1
Keel Heal
Uncommon

Heal 15–30%

"Let's make that pain walk the plank."

Composited Actions

heal

amount

  • targetValue: health
  • minMultiplier: 0.15
  • maxMultiplier: 0.3

attribute

  • value: health

Lua

defineCardTemplate({
	id = "keel-heal",
	name = "Keel Heal",
	flavourText = "\"Let's make that pain walk the plank.\"",
	cost = 1,
	layout = CARDLAYOUT_CHARTERED,
	rarity = CARDRARITY_UNCOMMON,
	imagePath = "ac372d2a-5eaf-4ffb-8ce3-236526ca56e9",
	imageSize = "626,457",
	imagePoint = "0,0",
	target = CARDTARGET_ALLIES,
	actions = {
		{
			baseAction = "heal",
			variables =  {
				amount =  {
					targetValue = "health",
					minMultiplier = 0.15,
					maxMultiplier = 0.3
				}
			}
		}
	}
});

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 = "heal",
	type = "heal",
	target = CARDTARGET_CARD_TARGET,
	text = "%icon% Heal %detailamount%",
	variables =  {
		attribute =  {
			value = "health"
		},
		amount =  {
			targetValue = "health",
			minMultiplier = 0.1,
			maxMultiplier = 0.3
		}
	},
	condition = ""
});

Player Character Sheet