Hi all,
I'd like to be able to restrict a particular item (could be any item but it's a horse i'm trying it with currently) so it is only usable by a character that has a particular ability/trait.
Basically the scenario might be something like:
- create a new item which happens to be a mount called "Wild Horse"
- create a unit level ability "Ride Wild Horse" that when selected allows the character to ride a "Wild Horse"
- although it would be possible to trade the item to another character... they should not be able to "equip" the horse (unless they too have the "Ride Wild Horse" ability
Problem I have is getting the prereq on the item to work, starting to think it's not possible
I have tried all these prereqs...
<Prereq>
<Type>AbilityBonusOption</Type>
<Attribute>RideWildHorse</Attribute>
</Prereq>
<Prereq>
<Type>AbilityBonusOption</Type>
<Attribute>RideWildHorse</Attribute>
<Target>Unit</Target>
</Prereq>
And have also tried giving the ability a unique unitstat and then doing this...
<Prereq>
<Type>UnitStat_CanRideWildHorse</Type>
<Attribute>1</Attribute>
</Prereq>
None of these seem to work, I can give the WildHorse item to any character and they can equip it just fine. Any ideas?