Siren's Song
Silence 90% chance • 3 rounds
Physical Damage (Everyone) 20% of
Physique
Nothing can be heard above the cry of the Siren.
defineCardTemplate({
id = "sirens-song",
name = "Siren's Song",
flavourText = "Nothing can be heard above the cry of the Siren.",
cost = 4,
layout = CARDLAYOUT_CHARTERED,
rarity = CARDRARITY_RARE,
imagePath = "7d33f41e-b6cd-4ee1-9b9a-97c85bf5712b",
imageSize = "626,457",
imagePoint = "0,0",
target = CARDTARGET_ENEMIES,
actions = {
{
baseAction = "silence"
},
{
baseAction = "all-physical-attack",
variables = {
amount = {
sourceValue = "physique",
multiplier = 0.2
}
}
}
}
});
defineBattleAction({
id = "silence",
type = "condition",
target = CARDTARGET_CARD_TARGET,
text = "%icon% Silence %conditions%",
variables = {
duration = {
value = 3
},
chance = {
value = 0.9
},
icon = {
value = "silence"
}
},
condition = "silence"
});
defineBattleAction({
id = "all-physical-attack",
type = "damage",
target = CARDTARGET_ALL,
text = "%icon% Physical Damage (Everyone) %detailamount%",
variables = {
attribute = {
value = "health"
},
amount = {
sourceValue = "physique",
minMultiplier = 0.2,
maxMultiplier = 0.5
},
icon = {
value = "damage"
}
},
condition = ""
});