4
Siren's Song
Rare

Silence 90% chance • 3 rounds

Physical Damage (Everyone) 20% of Physique

Nothing can be heard above the cry of the Siren.

Composited Actions

silence

chance

  • value: 0.9

duration

  • value: 3

icon

  • value: silence

all-physical-attack

amount

  • sourceValue: physique
  • multiplier: 0.2

attribute

  • value: health

icon

  • value: damage

Lua

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
				}
			}
		}
	}
});

Deprecated: strpos(): Passing null to parameter #1 ($haystack) of type string is deprecated in /srv/app/dodoclients/htdocs/public/heists/models/cardModel.php on line 391
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 = ""
});

Player Character Sheet