Blow The Man Down
Physical Damage 60–80% of
Physique
Stun 90% chance • 3 rounds
"It's starboard and larboard on deck you'll sprawl."
defineCardTemplate({
id = "stunning-blow",
name = "Blow The Man Down",
flavourText = "\"It's starboard and larboard on deck you'll sprawl.\"",
cost = 1,
layout = CARDLAYOUT_CHARTERED,
rarity = CARDRARITY_RARE,
imagePath = "1a8850d5-ba80-4208-b0c4-2fbb3b3168c2",
imageSize = "626,457",
imagePoint = "0,0",
target = CARDTARGET_ENEMY,
actions = {
{
baseAction = "physical-attack",
variables = {
amount = {
sourceValue = "physique",
minMultiplier = 0.6,
maxMultiplier = 0.8
}
}
},
{
baseAction = "stun"
}
}
});
defineBattleAction({
id = "physical-attack",
type = "damage",
target = CARDTARGET_CARD_TARGET,
text = "%icon% Physical Damage %detailamount%",
variables = {
attribute = {
value = "health"
},
amount = {
sourceValue = "physique",
minMultiplier = 0.8,
maxMultiplier = 1.2
},
icon = {
value = "damage"
}
},
condition = ""
});
defineBattleAction({
id = "stun",
type = "condition",
target = CARDTARGET_CARD_TARGET,
text = "%icon% Stun %conditions%",
variables = {
duration = {
value = 3
},
chance = {
value = 0.9
},
icon = {
value = "stun"
}
},
condition = "stun"
});