Dead Men's Tales
Slow 90% chance • 3 rounds
Physical Damage 80% of
Physique
Dead men don't tell their tales so much as make you a part of them.
defineCardTemplate({
id = "dead-mens-tales",
name = "Dead Men's Tales",
flavourText = "Dead men don't tell their tales so much as make you a part of them.",
cost = 2,
layout = CARDLAYOUT_CHARTERED,
rarity = CARDRARITY_COMMON,
imagePath = "834aac2e-2940-498a-acbb-497b9f691dd2",
imageSize = "626,457",
imagePoint = "0,0",
target = CARDTARGET_ENEMY,
actions = {
{
baseAction = "slow"
},
{
baseAction = "physical-attack",
variables = {
amount = {
sourceValue = "physique",
multiplier = 0.8
}
}
}
}
});
defineBattleAction({
id = "slow",
type = "condition",
target = CARDTARGET_CARD_TARGET,
text = "%icon% Slow %conditions%",
variables = {
duration = {
value = 3
},
chance = {
value = 0.9
},
icon = {
value = "slow"
}
},
condition = "slow"
});
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 = ""
});