1
Cut-Me-Own-Throat
Rare

Bleed 100% chance • 2–4 rounds

Occult +3pts • 3 rounds

Not all charms are charming.

Composited Actions

bleed

chance

  • value: 1

duration

  • minValue: 2
  • maxValue: 4

icon

  • value: bleed

occult-boost

amount

  • value: 3
  • type: CARDAMOUNTTYPE_POINT

attribute

  • value: occult

duration

  • value: 3

Lua

defineCardTemplate({
	id = "cut-me-own-throat",
	name = "Cut-Me-Own-Throat",
	flavourText = "Not all charms are charming.",
	cost = 1,
	layout = CARDLAYOUT_CHARTERED,
	rarity = CARDRARITY_RARE,
	imagePath = "fbc7f62b-31ba-462c-b68b-bc4f71353760",
	imageSize = "626,457",
	imagePoint = "0,0",
	target = CARDTARGET_SELF,
	actions = {
		{
			baseAction = "bleed",
			variables =  {
				chance =  {
					value = 1
				}
			}
		},
		{
			baseAction = "occult-boost"
		}
	}
});

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 = "bleed",
	type = "condition",
	target = CARDTARGET_CARD_TARGET,
	text = "%icon% Bleed %conditions%",
	variables =  {
		duration =  {
			minValue = 2,
			maxValue = 4
		},
		chance =  {
			value = 0.9
		},
		icon =  {
			value = "bleed"
		}
	},
	condition = "bleed"
});
defineBattleAction({
	id = "occult-boost",
	type = "modifier",
	target = CARDTARGET_CARD_TARGET,
	text = "%icon% Occult %amountduration%",
	variables =  {
		attribute =  {
			value = "occult"
		},
		amount =  {
			value = 3,
			type = CARDAMOUNTTYPE_POINT
		},
		duration =  {
			value = 3
		}
	},
	condition = ""
});

Player Character Sheet