Cut-Me-Own-Throat
Bleed 100% chance • 2–4 rounds
Occult +3pts • 3 rounds
Not all charms are charming.
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"
}
}
});
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 = ""
});