-
Fire in the Hole
Common

Magical Damage 20–170% of Occult

Light and warmth are usually welcome on the cold, dark seas. Usually.

Composited Actions

magical-attack

amount

  • sourceValue: occult
  • minMultiplier: 0.2
  • maxMultiplier: 1.7

attribute

  • value: health

icon

  • value: magicalDamage

Lua

defineCardTemplate({
	id = "fire-in-the-hole",
	name = "Fire in the Hole",
	flavourText = "Light and warmth are usually welcome on the cold, dark seas. Usually.",
	cost = -1,
	layout = CARDLAYOUT_CHARTERED,
	rarity = CARDRARITY_COMMON,
	imagePath = "a914de70-77ba-40ce-a478-5275b70fd319",
	imageSize = "626,457",
	imagePoint = "0,0",
	target = CARDTARGET_ENEMY,
	actions = {
		{
			baseAction = "magical-attack",
			variables =  {
				amount =  {
					sourceValue = "occult",
					minMultiplier = 0.2,
					maxMultiplier = 1.7
				}
			}
		}
	}
});

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 = "magical-attack",
	type = "damage",
	target = CARDTARGET_CARD_TARGET,
	text = "%icon% Magical Damage %detailamount%",
	variables =  {
		attribute =  {
			value = "health"
		},
		amount =  {
			sourceValue = "occult",
			minMultiplier = 0.8,
			maxMultiplier = 1.2
		},
		icon =  {
			value = "magicalDamage"
		}
	},
	condition = ""
});

Player Character Sheet