So for example if I wanted to modify Permanent Phantom White Tiger I would need to find it's ID in dbo.ItemResource
select *
from dbo.ItemResource
where id = 601100290
And find the summon_id and then search dbo.SummonResource for that number
select *
from dbo.SummonResource
where id = 5001
and modify data in riding_speed column?
Interestingly enough in game the riding speed is 280 however the data in the dbo is 50. Did I mess something up here?