GrovyleXShinyCelebi wrote:EDIT: I just realized that I made a huge mistake on the Bushido and Takeno's ability, and none of the Bushido effects work!
Bushido is very easy to make in DotP2014 thanks to the new "integer characteristic". So you need 2 parts for Bushido, a static ability that grants the bushido points:
- Code: Select all
<STATIC_ABILITY>
<CONTINUOUS_ACTION layer="6">
if EffectSource() ~= nil then
EffectSource():GetCurrentCharacteristics():Int_Add( INT_CHARACTERISTIC_BUSHIDO, 2 ) -- this is for Bushido 2
end
</CONTINUOUS_ACTION>
</STATIC_ABILITY>
and a triggered ability that actually grants the bonus. You could read the bushido points from the characteristic, but this would interfere with
Sensei Golden-Tail (multiple instances of bushido should trigger independently), so it's better if you hard-code the bushido points there as well:
- Code: Select all
<TRIGGERED_ABILITY badge="BADGE_BUSHIDO">
<TRIGGER value="BLOCKING" simple_qualifier="self" />
<TRIGGER value="WAS_BLOCKED" simple_qualifier="self" />
<CONTINUOUS_ACTION layer="7C">
if EffectSource() ~= nil then
local bushido = 2 -- this is for Bushido 2
local characteristics = EffectSource():GetCurrentCharacteristics()
characteristics:Power_Add( bushido )
characteristics:Toughness_Add( bushido )
end
</CONTINUOUS_ACTION>
<DURATION simple_duration="UntilEOT" />
</TRIGGERED_ABILITY>
Now Takeno will just read the INT_CHARACTERISTIC_BUSHIDO in order to grant his bonus (you need to use Int_Get because Get_Int isn't defined for the characteristics), while
Sensei Golden-Tail will grant both those abilities (with Bushido 1, of course). Put the ability text in any one of the 2 abilities, there's no difference.
GrovyleXShinyCelebi wrote:-I couldn't find any high-quality art for
Hand of Honor, so the deckbox image is
Kitsune Blademaster. If anyone can get some some good medium-large sized (about the size of in-game art images should do)
Hand of Honor art by tomorrow, I'll make that the deckbox in the patch.
If I search for
Hand of Honor in my web generator and follow the MagicVille link, I find a
good art for it.
