2
Dead Men's Tales
Common

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.

Composited Actions

slow

chance

  • value: 0.9

duration

  • value: 3

icon

  • value: slow

physical-attack

amount

  • sourceValue: physique
  • multiplier: 0.8

attribute

  • value: health

icon

  • value: damage

Lua

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

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

Player Character Sheet