-
Pay Through The Nose
Common

Physical Damage 70–100% of Physique

"Oh you'll pay up, one way or another..."

Composited Actions

physical-attack

amount

  • sourceValue: physique
  • minMultiplier: 0.7
  • maxMultiplier: 1

attribute

  • value: health

icon

  • value: damage

Lua

defineCardTemplate({
	id = "pay-through-the-nose",
	name = "Pay Through The Nose",
	flavourText = "\"Oh you'll pay up, one way or another...\"",
	cost = -1,
	layout = CARDLAYOUT_CHARTERED,
	rarity = CARDRARITY_COMMON,
	imagePath = "b1f4a496-faf1-44df-9ee1-ee97d0aa37b0",
	imageSize = "626,457",
	imagePoint = "0,0",
	target = CARDTARGET_ENEMY,
	actions = {
		{
			baseAction = "physical-attack",
			variables =  {
				amount =  {
					sourceValue = "physique",
					minMultiplier = 0.7,
					maxMultiplier = 1
				}
			}
		}
	}
});

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

Player Character Sheet