1
Blow The Man Down
Rare

Physical Damage 60–80% of Physique

Stun 90% chance • 3 rounds

"It's starboard and larboard on deck you'll sprawl."

Composited Actions

physical-attack

amount

  • sourceValue: physique
  • minMultiplier: 0.6
  • maxMultiplier: 0.8

attribute

  • value: health

icon

  • value: damage

stun

chance

  • value: 0.9

duration

  • value: 3

icon

  • value: stun

Lua

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

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

Player Character Sheet