Module:Cards/data

From Wildfrost Wiki
Jump to navigation Jump to search

Documentation for this module may be created at Module:Cards/data/doc

local p = {}
local cards = {}

--[[
regexes used
Feel free to ignore these, as I used them to convert wikitext tables into module data, and I'm mainly storing these here for potential future use. If anything, they've already served their purpose.

cards["$1"] = {\n\tName = "$1",\n\tTypes={Pet=true, Companion=true},\n\tHealth=$3,\n\tAttack=$4,\n\tCounter=$5,\n\tOther="$6",\n\tDesc="$7"\n}
cards["$1"] = {\n\tName = "$1",\n\tTypes={NonPetCompanion=true, Companion=true},\n\tHealth=$3,\n\tAttack=$4,\n\tCounter=$5,\n\tOther="$6",\n\tDesc="$7",\n\tTribes={"$8"}\n}
cards["$1"] = {\n\tName = "$1",\n\tTypes={Item=true, ShopItem=true},\n\tAttack=$4,\n\tOther="$6",\n\tDesc="$7",\n\tTribes={"$8"},\n\tPrice="$9"\n}
cards["$1"] = {\n\tName = "$1",\n\tTypes={Clunker=true},\n\tScrap=$3,\n\tAttack=$4,\n\tCounter=$5,\n\tOther="$6",\n\tDesc="$7",\n\tTribes={"$8"}\n}
cards["$2"] = {\n\tName = "$2",\n\tTypes={Shade=true},\n\tHealth=$3,\n\tAttack=$4,\n\tCounter=$5,\n\tOther="$6",\n\tDesc="$7"\n\tSummonCon="$8"\n}
cards["$2"] = {\n\tName = "$2",\n\tTypes={Enemy=true},\n\tHealth=$3,\n\tAttack=$4,\n\tCounter=$5,\n\tOther="$6",\n\tDesc="$7"\n}
cards["$1"] = {\n\tName = "$2",\n\tTypes={EnemyClunker=true},\n\tScrap=$3,\n\tAttack=$4,\n\tCounter=$5,\n\tOther="$6",\n\tDesc="$7"\n}
cards["$2"] = {\n\tName = "$2",\n\tTypes={Miniboss=true},\n\tHealth=$3,\n\tAttack=$4,\n\tCounter=$5,\n\tOther="$6",\n\tDesc="$7"\n}
cards["$2"] = {\n\tName = "$2",\n\tTypes={Boss=true},\n\tHealth=$3,\n\tAttack=$4,\n\tCounter=$5,\n\tOther="$6",\n\tDesc="$7"\n}
\t(.*)=(""|)(?:,)?\n
\|(?:style=".*"\|)?(.*)
--]]
--[[
To convert to a python-readable dict. Paste in the console to see:

function dump(o, nested)
   if type(o) == 'table' then
      local s = '{ '
      for k,v in pairs(o) do
         nested = nested or false
         if type(k) ~= 'number' then k = '"'..k..'"' end
         if type(v) == 'string' then v = '"'..v:gsub('"', '\\"')..'"' end
         if nested == false then s = s .. '\n\t' end
         s = s .. k.. ': ' .. dump(v, true) .. ','
      end
      if nested == false then s = s .. '\n' end
      return s .. '}'
   else
      local result = tostring(o)
      if result == 'true' then result = 'True' end
      return result
   end
end

print("cards = {}")
for card, dict in pairs(p.cards) do
	print(string.format("cards[\"%s\"] = %s", card, dump(dict)))
end
--]]
--[[
To convert python back to lua:

stats = ['Name', 'Image', 'Link', 'Types', 'Health', 'Scrap', 'Attack', 'Counter', 'Other', 'Desc', 'Tribes', 'SummonCon', 'Price'] # other stats continue past here
def toLua(card):
    s = '{'
    for stat in stats:
        if stat in card:
            f = type(card[stat]) == str
            s += f'\n\t{stat}=' + f*"\""
            if stat == 'Types': s += str(card[stat]).replace("'","").replace(': ','=').replace('True','true')
            elif stat == 'Tribes': s += '{"' + '", '.join(card[stat].values()) + '"}'
            else: s += str(card[stat]).replace('"', '\\"')
            s += f*"\"" + ','
    for stat in card:
        if stat not in stats:
            f = type(card[stat]) == str
            s += f'\n\t{stat}=' + f*"\"" + str(card[stat]) + f*"\"" + ','
    return s + '\n}'

def run():
    filters = {'Pets': 'Pet', 'Frozen Travellers': 'NonPetCompanion', 'Clunkers': 'Clunker', 'Items': 'Item', 'Shades': 'Shade', 'Enemies': 'Enemy', 'Enemy Clunkers': 'EnemyClunker', 'Minibosses': 'Miniboss', 'Bosses': 'Boss'}
    result = ''
    for f in filters:
        result += f'\n\n--{f}'
        filterer = lambda pair: ('Types' in pair[1] and filters[f] in pair[1]['Types']) or ('Types' not in pair[1] and 'Link' in pair[1] and pair[1]['Link'] in cards and filters[f] in cards[pair[1]['Link'] ]['Types'])
        for pair in sorted(list(filter(filterer, cards.items()))):
            if f != 'Enemy Clunkers' or (f == 'Enemy Clunkers' and 'Clunker' not in pair[1]['Types']):
                result += f'\ncards["{pair[0]}"] = {toLua(pair[1])}'
    return result
--]]


--Pets
cards["Booshu"] = {
	Name="Booshu",
	Types={Pet=true, Companion=true},
	Health=4,
	Attack=3,
	Counter=5,
	Desc="Restore '''3''' {{Stat|Health}} to all allies",
	Challenge="Recall '''3''' Companions",
	ChallengeOrder=1,
}

cards["Binku"]= {
	Name="Binku",
	Types={Pet=true, Companion=true},
	Health=3,
	Attack=2,
	Counter=4,
	Desc="Apply '''3''' {{Stat|Ink}}",
	Challenge="Hit the Enemy Wave Bell '''5''' times",
	ChallengeOrder=5
}
cards["Lil Gazi"] = {
	Name="Lil' Gazi",
	Types={Pet=true, Companion=true},
	Health=3,
	Attack=4,
	Counter=4,
	Desc="While active, add '''+1''' {{Stat|Attack}} to all allies",
	Challenge="Achieve a '''6x''' kill combo",
	ChallengeOrder=6,
	UniqueName="Lil Gazi"
}
cards["Loki"] = {
	Name="Loki",
	Types={Pet=true, Companion=true},
	Health=5,
	Attack=3,
	Counter=3,
	Desc="Apply '''1''' {{Stat|Demonize}}<br>{{Keyword|Aimless}}",
	Challenge="Kill '''3''' {{Stat|Demonize|Demonized}} enemies",
	ChallengeOrder=2,
}
cards["Sneezle"] = {
	Name="Sneezle",
	Types={Pet=true, Companion=true},
	Health=6,
	Attack=2,
	Counter=3,
	Desc="{{Keyword|Draw}} '''1''' when hit",
	Challenge="Buy '''5''' discounted [[Items]]",
	ChallengeOrder=3,
}
cards["Snoof"] = {
	Name="Snoof",
	Types={Pet=true, Companion=true},
	Health=3,
	Attack=3,
	Counter=3,
	Desc="Apply '''1''' {{Stat|Snow}}",
	Challenge="''Unlocked by default.''",
	ChallengeOrder=0,
}
cards["Spike"] = {
	Name="Spike",
	Types={Pet=true, Companion=true},
	Health=7,
	Other="2 {{Stat|Teeth}}",
	Desc="{{Keyword|Hogheaded}}",
	Challenge="Kill '''10''' enemies with {{Stat|Teeth}}",
	ChallengeOrder=4,
}

--Frozen Travellers
cards["Alloy"] = {
	Name="Alloy",
	Types={Companion=true, NonPetCompanion=true},
	Health=12,
	Attack=6,
	Counter=5,
	Other="1 {{Stat|Bom}}",
	Desc="Apply '''1''' {{Stat|Scrap}} to a random ally",
	Tribes={"Clunkmasters"},
}

cards["The Baker"] = {
	Name="The Baker",
	Types={Companion=true, HotSpring=true, NonPetCompanion=true},
	Health=9,
	Counter=4,
	Desc="Add '''1''' {{Card|Skull Muffin}} to your hand<br>{{Keyword|Spark}}",
	Tribes={"Shademancers"},
	Challenge="Summon '''50''' allies",
	ChallengeOrder=4,
}

cards["Berry Sis"] = {
	Name="Berry Sis",
	Types={Companion=true, NonPetCompanion=true},
	Health=8,
	Attack=2,
	Counter=3,
	Desc="When hit, add lost {{Stat|Health}} to a random ally",
	Tribes={"Shademancers"},
}
cards["Big Berry"] = {
	Name="Big Berry",
	Types={Companion=true, NonPetCompanion=true},
	Health=10,
	Attack=5,
	Counter=4,
	Desc="On kill, restore '''2''' {{Stat|Health}} to self and allies in the row",
	Tribes={"All"},
}
cards["Biji"] = {
	Name="Biji",
	Types={Companion=true, NonPetCompanion=true},
	Health=8,
	Attack=0,
	Counter=4,
	Desc="Apply '''3''' {{Stat|Bom}}<br>Increase by 1 when hit",
	Tribes={"Clunkmasters"},
}
cards["Blunky"] = {
	Name="Blunky",
	Types={Companion=true, NonPetCompanion=true},
	Health=1,
	Attack=1,
	Counter=2,
	Desc="When deployed, gain '''1''' {{Stat|Block}}",
	Tribes={"All"},
}
cards["Bombom"] = {
	Name="Bombom",
	Types={Companion=true, HotSpring=true, NonPetCompanion=true},
	Health=16,
	Attack=7,
	Counter=4,
	Desc="Deal '''5''' damage to self and allies in the row<br>{{Keyword|Barrage}}",
	Tribes={"All"},
	Challenge="Deal '''10''' damage to your own team",
	ChallengeOrder=1,
}
cards["Bonnie"] = {
	Name="Bonnie",
	Types={Companion=true, NonPetCompanion=true},
	Health=4,
	Counter=4,
	Desc="Restore '''2''' {{Stat|Health}} and {{Keyword|Cleanse}} all allies",
	Tribes={"All"},
}
cards["Chikichi"] = {
	Name="Chikichi",
	Types={Companion=true, NonPetCompanion=true},
	Health=2,
	Attack=2,
	Counter=3,
	Desc="When {{Keyword|Sacrificed}}, summon [[Chikani]]",
	Tribes={"Shademancers"},
}
cards["Chompom"] = {
	Name="Chompom",
	Types={Companion=true, NonPetCompanion=true},
	Health=3,
	Attack=1,
	Counter=3,
	Other="2 {{Stat|Shell}}",
	Desc="Deal additional damage equal to {{Stat|Shell}}",
	Tribes={"Snowdwellers"},
}
cards["Devicro"] = {
	Name="Devicro",
	Types={Companion=true, NonPetCompanion=true},
	Health=7,
	Attack=2,
	Counter=4,
	Desc="When an ally is {{Keyword|Sacrificed}}, gain their {{Stat|Attack}}",
	Tribes={"Shademancers"},
}
cards["Dimona"] = {
	Name="Dimona",
	Types={Companion=true, NonPetCompanion=true},
	Health=6,
	Attack=2,
	Counter=3,
	Desc="When an enemy is hit with an [[Items|Item]], apply '''1''' {{Stat|Demonize}} to them",
	Tribes={"All"},
}
cards["Egg"] = {
	Name="Egg",
	Types={Companion=true, NonPetCompanion=true},
	Health=8,
	Desc="When destroyed, summon [[Dregg]]",
	Tribes={"Shademancers"},
}
cards["Firefist"] = {
	Name="Firefist",
	Types={Companion=true, NonPetCompanion=true},
	Health=12,
	Attack=2,
	Counter=5,
	Desc="When {{Stat|Health}} lost, gain equal {{Stat|Spice}}",
	Tribes={"Snowdwellers"},
}
cards["Fizzle"] = {
	Name="Fizzle",
	Types={Companion=true, NonPetCompanion=true},
	Health=5,
	Attack=0,
	Counter=4,
	Other="x3 {{Stat|Frenzy}}",
	Desc="Apply '''1''' {{Stat|Bom}}",
	Tribes={"Clunkmasters"},
}
cards["Folby"] = {
	Name="Folby",
	Types={Companion=true, NonPetCompanion=true},
	Health=12,
	Attack=3,
	Counter=4,
	Desc="{{Keyword|Trash}} '''1''' when hit",
	Tribes={"Clunkmasters"},
}
cards["Foxee"] = {
	Name="Foxee",
	Types={Companion=true, NonPetCompanion=true},
	Health=4,
	Attack=1,
	Counter=3,
	Other="x3 {{Stat|Frenzy}}",
	Tribes={"All"},
}

cards["Fulbert"] = {
	Name="Fulbert",
	Types={Companion=true, NonPetCompanion=true},
	Health= 4,
	Attack= 1,
	Counter= 3,
	Desc="When {{Stat|Spice|Spiced}} or {{Stat|Shell|Shelled}}, apply equal {{Stat|Shroom}} to a random enemy",
	Tribes={"Snowdwellers"},
}

cards["Fungun"] = {
	Name="Fungun",
	Types={Companion=true, NonPetCompanion=true},
	Health=10,
	Attack=0,
	Counter=5,
	Desc="Apply '''2''' {{Stat|Shroom}}<br>Increase by 1 when hit",
	Tribes={"Snowdwellers"},
}

cards["Gojiber"] = {
	Name="Gojiber",
	Types={Companion=true, NonPetCompanion=true},
	Health= 7,
	Attack= 0,
	Other="{{Stat|Reaction}}",
	Desc="Deal additional damage equal to {{Stat|Health}}<br>{{Keyword|Smackback}}",
	Tribes={"All"},
}

cards["Groff"] = {
	Name="Groff",
	Types={Companion=true, NonPetCompanion=true},
	Health=6,
	Attack=5,
	Other="{{Stat|Reaction}}, x2 {{Stat|Frenzy}}",
	Desc="<span style=\"color:brown\">Trigger when an ally is {{Keyword|Sacrificed}}</span>",
	Tribes={"Shademancers"},
}
cards["Hazeblazer"] = {
	Name="Hazeblazer",
	Types={Companion=true, NonPetCompanion=true},
	Health=10,
	Attack=0,
	Counter=5,
	Desc="Apply '''1''' {{Stat|Haze}}<br>Deal '''3''' damage to self",
	Tribes={"Clunkmasters"},
}
cards["Jumbo"] = {
	Name="Jumbo",
	Types={Companion=true, NonPetCompanion=true},
	Health=13,
	Attack=1,
	Counter=3,
	Desc="Also hits ally behind<br>{{Keyword|Barrage}}",
	Tribes={"All"},
}
cards["Kernel"] = {
	Name="Kernel",
	Types={Companion=true, NonPetCompanion=true},
	Health=8,
	Attack=3,
	Counter=4,
	Desc="When hit, apply '''2''' {{Stat|Shell}} to ally behind",
	Tribes={"Snowdwellers"},
}

cards["Knuckles"] = {
	Name="Knuckles",
	Types={Companion=true, NonPetCompanion=true},
	Health= 8,
	Attack= 4,
	Other="{{Stat|Reaction}}",
	Desc="<span style=\"color:brown\">Trigger when hit</span>",
	Tribes={"Clunkmasters"},
}

cards["Kreggo"] = {
	Name="Kreggo",
	Types={Companion=true, NonPetCompanion=true},
	Health=7,
	Attack=2,
	Counter=5,
	Desc="When a card is destroyed, gain '''+1''' {{Stat|Attack}}",
	Tribes={"Clunkmasters"},
}
cards["Lil Berry"] = {
	Name="Lil' Berry",
	Types={Companion=true, NonPetCompanion=true},
	Health=8,
	Attack=2,
	Counter=4,
	Desc="When healed, gain '''+2''' {{Stat|Attack}}",
	Tribes={"Snowdwellers"},
	UniqueName="Lil Berry"
}

cards["Lupa"] = {
	Name="Lupa",
	Types={Companion=true, HotSpring=true, NonPetCompanion=true},
	Health= 4,
	Attack= 1,
	Counter= 5,
	Desc="When hit, boost the effects of a random ally and enemy by '''1'''",
	Tribes={"All"},
	Challenge="Kill '''20''' [[Enemies|enemies]] with {{Keyword|Smackback}}",
	ChallengeOrder=3,
}

cards["Mama Tinkerson"] = {
	Name="Mama Tinkerson",
	Types={Companion=true, NonPetCompanion=true},
	Health= 5,
	Attack= 3,
	Counter= 4,
	Desc="While active, add '''x2''' {{Stat|Frenzy}} to all [[Clunkers|Clunker]] allies",
	Tribes={"Clunkmasters"},
}

cards["Mini Mika"] = {
	Name="Mini Mika",
	Types={Companion=true, NonPetCompanion=true},
	Health=8,
	Attack=2,
	Counter=5,
	Desc="When hit with [[Junk]], gain '''x1''' {{Stat|Frenzy}}",
	Tribes={"Clunkmasters"},
}
cards["Monch"] = {
	Name="Monch",
	Types={Companion=true, NonPetCompanion=true},
	Health=6,
	Attack=2,
	Counter=4,
	Desc="Before attacking, eat allies in the row, absorbing their {{Stat|Attack}} and {{Stat|Health}}",
	Tribes={"Shademancers"},
}
cards["Naked Gnome"] = {
	Name="Naked Gnome",
	Types={Companion=true, NonPetCompanion=true},
	Health=1,
	Attack=1,
	Counter=2,
	Tribes={"All"},
	Gold="Doesn't drop gold"
}

cards["Needle"] = {
	Name="Needle",
	Types={Companion=true, NonPetCompanion=true},
	Health= 7,
	Attack= 3,
	Counter= 4,
	Desc="Destroy all {{Card|Junk}} in hand and {{Keyword|Draw}} '''1''' for each",
	Tribes={"Clunkmasters"},
}

cards["Nom & Stompy"] = {
	Name="Nom & Stompy",
	Types={Companion=true, NonPetCompanion=true},
	Health=10,
	Attack=10,
	Counter=10,
	Desc="When a card is destroyed, count down {{Stat|Counter}} by '''1'''",
	Tribes={"Clunkmasters"},
}

cards["Nova"] = {
	Name="Nova",
	Types={Companion=true, HotSpring=true, NonPetCompanion=true},
	Health= 3,
	Attack= 3,
	Counter= 12,
	Other= "{{Stat|Reaction}}, 1 {{Stat|Block}}",
	Desc="Hits all enemies<br><span style=\"color:brown\">Trigger when self or ally loses {{Stat|Block}}</span>",
	Tribes={"All"},
	Challenge="Achieve a '''4x''' kill combo",
	ChallengeOrder=2,
}

cards["Pimento"] = {
	Name="Pimento",
	Types={Companion=true, NonPetCompanion=true},
	Health= 7,
	Attack= 2,
	Counter= 5,
	Desc="Retains {{Stat|Spice}}",
	Tribes={"Snowdwellers"},
}


cards["Pootie"] = {
	Name="Pootie",
	Types={Companion=true, NonPetCompanion=true},
	Health=1,
	Attack=1,
	Counter=3,
	Desc="When destroyed, add '''x1''' {{Stat|Frenzy}} to a random ally",
	Tribes={"Snowdwellers"},
}
cards["Pyra"] = {
	Name="Pyra",
	Types={Companion=true, NonPetCompanion=true},
	Health=6,
	Counter=4,
	Desc="Apply '''4''' {{Stat|Spice}} to ally behind",
	Tribes={"Snowdwellers"},
}

cards["Roibos"] = {
	Name="Roibos",
	Types={Companion=true, NonPetCompanion=true},
	Health= 7,
	Attack= 2,
	Counter= 4,
	Desc="When hit, add '''+1''' {{Stat|Attack}} to ally with the lowest {{Stat|Attack}}",
	Tribes={"All"},
}


cards["Scaven"] = {
	Name="Scaven",
	Types={Companion=true, NonPetCompanion=true},
	Health=8,
	Attack=5,
	Counter=3,
	Desc="{{Keyword|Trash}} '''1'''",
	Tribes={"Clunkmasters"},
}
cards["Shelly"] = {
	Name="Shelly",
	Types={Companion=true, NonPetCompanion=true},
	Health=4,
	Attack=1,
	Counter=3,
	Desc="When an enemy is killed, apply '''3''' {{Stat|Shell}} to the attacker",
	Tribes={"Snowdwellers"},
}
cards["Shen"] = {
	Name="Shen",
	Types={Companion=true, NonPetCompanion=true},
	Health=6,
	Attack=0,
	Counter=4,
	Desc="Apply '''2''' {{Stat|Overburn}}<br>Increase by 1 when hit",
	Tribes={"Shademancers"},
}
cards["Snobble"] = {
	Name="Snobble",
	Types={Companion=true, NonPetCompanion=true},
	Health=5,
	Attack=2,
	Counter=4,
	Desc="Apply {{Stat|Snow}} equal to damage dealt",
	Tribes={"All"},
}
cards["Snoffel"] = {
	Name="Snoffel",
	Types={Companion=true, NonPetCompanion=true},
	Health=4,
	Counter=4,
	Desc="Apply '''1''' {{Stat|Snow}} to all enemies",
	Tribes={"All"},
}
cards["Splinter"] = {
	Name="Splinter",
	Types={Companion=true, NonPetCompanion=true},
	Health=4,
	Attack=4,
	Counter=4,
	Desc="When deployed, copy the effects of a random enemy in the row",
	Tribes={"Shademancers"},
}

cards["Spoof"] = {
	Name="Spoof",
	Types={Companion=true, NonPetCompanion=true},
	Health= 2,
	Counter= 5,
	Desc="Summon a {{Keyword|Bootleg}} copy of a random enemy",
	Tribes={"Shademancers"},
}

cards["Taiga"] = {
	Name="Taiga",
	Types={Companion=true, NonPetCompanion=true},
	Health=8,
	Counter=4,
	Other="2 {{Stat|Teeth}}",
	Desc="Gain '''2''' {{Stat|Teeth}}",
	Tribes={"Shademancers"},
}
cards["Tinkerson Jr"] = {
	Name="Tinkerson Jr.",
	Link="Tinkerson Jr",
	Types={Companion=true, NonPetCompanion=true},
	Health=8,
	Attack=3,
	Counter=3,
	Desc="While active, add {{Stat|Attack}} to all [[Junk]] in your hand",
	Tribes={"Clunkmasters"},
	UniqueName="Tinkerson Jr"
}
cards["Tiny Tyko"] = {
	Name="Tiny Tyko",
	Types={Companion=true, HotSpring=true, NonPetCompanion=true},
	Health=2,
	Attack=1,
	Counter=4,
	Other="x2 {{Stat|Frenzy}}",
	Desc="When hit, gain '''x1''' {{Stat|Frenzy}}",
	Tribes={"Snowdwellers"},
	Challenge="Equip '''10''' [[Charms]]",
	ChallengeOrder=0,
}

cards["Toaster"] = {
	Name="Toaster",
	Types={Companion=true, HotSpring=true, NonPetCompanion=true},
	Health= 9,
	Attack= 3,
	Counter= 3,
	Other="x2 {{Stat|Frenzy}}",
	Desc="While active, add {{Keyword|Consume}} to [[Items]] in your hand",
	Tribes={"Clunkmasters"},
	Challenge="Add '''10''' {{Stat|Scrap}} to [[Clunkers]]",
	ChallengeOrder=5,
}


cards["Tusk"] = {
	Name="Tusk",
	Types={Companion=true, NonPetCompanion=true},
	Health=5,
	Attack=2,
	Counter=5,
	Desc="While active, add '''3''' {{Stat|Teeth}} to all allies",
	Tribes={"Shademancers"},
}
cards["Van Jun"] = {
	Name="Van Jun",
	Types={Companion=true, NonPetCompanion=true},
	Health=4,
	Counter=4,
	Desc="Add '''+2''' {{Stat|Attack}} and '''+2''' {{Stat|Health}} to all {{Keyword|Summoned}} allies",
	Tribes={"Shademancers"},
}
cards["Vesta"] = {
	Name="Vesta",
	Types={Companion=true, NonPetCompanion=true},
	Health=8,
	Attack=0,
	Counter=4,
	Desc="Double the target's {{Stat|Overburn}}<br>{{Keyword|Barrage}}",
	Tribes={"Shademancers"},
}
cards["Wallop"] = {
	Name="Wallop",
	Types={Companion=true, NonPetCompanion=true},
	Health=9,
	Attack=4,
	Counter=4,
	Desc="Deal '''8''' additional damage to {{Stat|Snow}}'d targets",
	Tribes={"Snowdwellers"},
}
cards["Wort"] = {
	Name="Wort",
	Types={Companion=true, NonPetCompanion=true},
	Health=6,
	Attack=0,
	Counter=3,
	Other="x2 {{Stat|Frenzy}}",
	Desc="Apply '''2''' {{Stat|Shroom}}<br>{{Keyword|Aimless}}",
	Tribes={"Snowdwellers"},
}
cards["Yuki"] = {
	Name="Yuki",
	Types={Companion=true, NonPetCompanion=true},
	Health=1,
	Attack=1,
	Counter=4,
	Desc="Whenever anything is {{Stat|Snow}}'d, gain equal {{Stat|Attack}}",
	Tribes={"Snowdwellers"},
}

cards["Zula"] = {
	Name="Zula",
	Types={Companion=true, NonPetCompanion=true},
	Health= 7,
	Attack= 0,
	Other="{{Stat|Reaction}}",
	Desc="Apply '''2''' {{Stat|Overburn}}<br><span style=\"color:brown\">Trigger when an enemy is killed</span>",
	Tribes={"Shademancers"},
}


--Clunkers
cards["Bitebox"] = {
	Name="Bitebox",
	Types={Clunker=true},
	Scrap=1,
	Desc="When hit, deal equal damage to the attacker",
	Tribes={"All"},
}
cards["Bling Bank"] = {
	Name="Bling Bank",
	Types={Clunker=true},
	Scrap=1,
	Other="{{Stat|Reaction}}",
	Desc="Gain '''4''' {{Bling}}<br><span style=\"color:brown\">Trigger when an enemy is killed</span>",
	Tribes={"All"},
}
cards["Blundertank"] = {
	Name="Blundertank",
	Types={Clunker=true},
	Scrap=2,
	Attack=5,
	Other="{{Stat|Reaction}}",
	Desc="<span style=\"color:brown\">Trigger when [[Junk]] is destroyed</span>",
	Tribes={"Clunkmasters"},
}
cards["Bombarder"] = {
	Name="Bombarder",
	Types={Clunker=true},
	Scrap=1,
	Attack=0,
	Other="{{Stat|Reaction}}",
	Desc="<span style=\"color:brown\">Trigger against anything that is hit with {{Stat|Bom}}</span>",
	Tribes={"Clunkmasters"},
}
cards["Fungo Blaster"] = {
	Name="Fungo Blaster",
	Types={Clunker=true},
	Scrap=1,
	Desc="When a {{Stat|Shroom}}'d enemy dies, apply their {{Stat|Shroom}} to a random enemy",
	Tribes={"Snowdwellers"},
}
cards["Gachapomper"] = {
	Name="Gachapomper",
	Types={Clunker=true},
	Scrap=1,
	Desc="While active, add {{Keyword|Barrage}} to allies in the row",
	Tribes={"Clunkmasters"},
}
cards["Haze Balloon"] = {
	Name="Haze Balloon",
	Types={Clunker=true},
	Scrap=1,
	Desc="When destroyed, apply '''1''' {{Stat|Haze}} to the attacker and double their {{Stat|Attack}}",
	Tribes={"Clunkmasters"},
}
cards["Heartforge"] = {
	Name="Heartforge",
	Types={Clunker=true},
	Scrap=1,
	Desc="When an ally is healed, apply double {{Stat|Spice}}",
	Tribes={"Snowdwellers"},
}
cards["Heartmist Station"] = {
	Name="Heartmist Station",
	Types={Clunker=true},
	Scrap=1,
	Desc="When an ally is hit, restore their {{Stat|Health}} by '''1'''",
	Tribes={"All"},
}
cards["ICGM"] = {
	Name="I.C.G.M",
	Link="I.C.G.M.",
	Types={Clunker=true},
	Scrap=3,
	Attack=10,
	Counter=13,
	Desc="Before triggering, gain {{Stat|Frenzy}} equal to {{Stat|Scrap}}<br>Destroy self",
	Tribes={"Clunkmasters"},
	UniqueName="ICGM"
}
cards["Junkhead"] = {
	Name="Junkhead",
	Types={Clunker=true},
	Scrap=3,
	Desc="{{Keyword|Trash}} '''1''' when hit",
	Tribes={"Clunkmasters"},
}
cards["Kobonker"] = {
	Name="Kobonker",
	Types={Clunker=true, InventorsHut=true},
	Scrap=1,
	Attack=3,
	Other="{{Stat|Reaction}}",
	Desc="<span style=\"color:brown\">Trigger against anything that is hit with {{Stat|Snow}}</span>",
	Tribes={"Snowdwellers"},
	Challenge="Add 3 [[Clunkers]] to your deck",
	ChallengeOrder=1,
}
cards["Krono"] = {
	Name="Krono",
	Types={Clunker=true, InventorsHut=true},
	Scrap=1,
	Desc="While active, add '''x1''' {{Stat|Frenzy}} to allies without {{Crown}}",
	Tribes={"All"},
	Challenge="Buy 10 {{Crown}}",
	ChallengeOrder=5,
}
cards["Mega Mimik"] = {
	Name="Mega Mimik",
	Types={InventorsHut=true, Clunker=true, EnemyClunker=true},
	Scrap=3,
	Attack=5,
	Other="{{Stat|Reaction}}",
	Desc="<div style=\"color:brown;\">Trigger when an ally in the row attacks</div>Lose '''1''' {{Stat|Scrap}}",
	Tribes={"All"},
	Challenge="Apply 60 {{Stat|Shell}}",
	ChallengeOrder=4,
}
cards["Mimik"] = {
	Name="Mimik",
	Types={Clunker=true, EnemyClunker=true},
	Scrap=1,
	Attack=2,
	Other="{{Stat|Reaction}}",
	Desc="<span style=\"color:brown\">Trigger when an ally in the row attacks</span>",
	Tribes={"All"},
}
cards["Mobile Campfire"] = {
	Name="Mobile Campfire",
	Types={Clunker=true},
	Scrap=1,
	Desc="While active, add '''+3''' {{Stat|Attack}} to allies in the row",
	Tribes={"Snowdwellers"},
}
cards["Moko Totem"] = {
	Name="Moko Totem",
	Types={Clunker=true},
	Scrap=2,
	Attack=0,
	Other="{{Stat|Reaction}}, x5 {{Stat|Frenzy}}",
	Desc="<span style=\"color:brown\"> Trigger when {{Stat|Spice}} reaches</span> '''10'''<br> Destroy self",
	Tribes={"Snowdwellers"},
}
cards["Pepper Flag"] = {
	Name="Pepper Flag",
	Types={Clunker=true},
	Scrap=1,
	Desc="While active, all allies retain {{Stat|Spice}}",
	Tribes={"Snowdwellers"},
}
cards["Plinker"] = {
	Name="Plinker",
	Types={Clunker=true, EnemyClunker=true},
	Scrap=5,
	Attack=2,
	Counter=1,
	Desc="Lose '''1''' {{Stat|Scrap}}",
	Tribes={"Clunkmasters"},
}
cards["Portable Workbench"] = {
	Name="Portable Workbench",
	Types={Clunker=true},
	Scrap=1,
	Desc="While active, all {{Keyword|Recycle}} effects require '''1''' less [[Junk]]",
	Tribes={"Clunkmasters"},
}
cards["Shroominator"] = {
	Name="Shroominator",
	Types={Clunker=true},
	Scrap=4,
	Desc="Whenever anything is {{Stat|Shroom}}'d, double the amount and lose '''1''' {{Stat|Scrap}}",
	Tribes={"Snowdwellers"},
}
cards["Shroomine"] = {
	Name="Shroomine",
	Types={Clunker=true},
	Scrap=1,
	Desc="When hit, apply '''4''' {{Stat|Shroom}} to the attacker",
	Tribes={"Snowdwellers"},
}
cards["Spice Sparklers"] = {
	Name="Spice Sparklers",
	Types={Clunker=true},
	Scrap=1,
	Desc="While active, add '''+3''' {{Stat|Attack}} to [[Items]] in your hand",
	Tribes={"Snowdwellers"},
}
cards["Sunglass Chime"] = {
	Name="Sunglass Chime",
	Types={Clunker=true},
	Scrap=1,
	Desc="When destroyed, trigger all allies",
	Tribes={"Clunkmasters"},
}
cards["Tootordion"] = {
	Name="Tootordion",
	Types={Clunker=true},
	Scrap=3,
	Counter=3,
	Desc="Trigger a random ally<br>Lose '''1''' {{Stat|Scrap}}",
	Tribes={"Clunkmasters"},
}
cards["Totem of the Goat"] = {
	Name="Totem of the Goat",
	Types={Clunker=true},
	Scrap=1,
	Desc="Before an enemy attacks, apply '''1''' {{Stat|Demonize}} to them",
	Tribes={"All"},
}
cards["Woodhead"] = {
	Name="Woodhead",
	Types={Clunker=true},
	Scrap=1,
	Desc="<span style=\"color:gray\">''Does nothing, but will take a hit for you :)''</span>",
	Tribes={"Snowdwellers"},
}

cards["Zoomlin Nest"] = {
	Name="Zoomlin Nest",
	Types={Clunker=true},
	Scrap= 1,
	Desc="While active, allies gain {{Keyword|Zoomlin}} when drawn",
	Tribes={"All"},
}


--Items
cards["Azul Battle Axe"] = {
	Name="Azul Battle Axe",
	Types={Item=true, ShopItem=true},
	Attack=3,
	Desc="Apply {{Stat|Overburn}} equal to damage dealt",
	Tribes={"Shademancers"},
	Price=50,
}
cards["Azul Candle"] = {
	Name="Azul Candle",
	Types={Item=true, ShopItem=true},
	Attack=1,
	Desc="Double the target's {{Stat|Overburn}}",
	Tribes={"Shademancers"},
	Price=50,
}
cards["Azul Skull"] = {
	Name="Azul Skull",
	Types={Item=true, ShopItem=true},
	Attack=0,
	Desc="Kill an ally<br>Apply '''4''' {{Stat|Overburn}} to front enemy",
	Tribes={"Shademancers"},
	Price=50,
}
cards["B.I.N.K"] = {
	Name="B.I.N.K",
	Types={Item=true, ShopItem=true},
	Attack=0,
	Desc="Apply '''2''' {{Stat|Ink}}<br>Hits all enemies",
	Tribes={"Clunkmasters"},
	Price=50,
}
cards["Beepop Mask"] = {
	Name="Beepop Mask",
	Types={Item=true, ShopItem=true},
	Desc="Summon [[Beepop]]",
	Tribes={"Shademancers"},
	Price=60,
}
cards["Berry Basket"] = {
	Name="Berry Basket",
	Types={Item=true, ShopItem=true},
	Desc="Restore '''2''' {{Stat|Health}} and {{Keyword|Cleanse}} all allies",
	Tribes={"All"},
	Price=50,
}
cards["Berry Bell"] = {
	Name="Berry Bell",
	Types={Item=true},
	Desc="Increase {{Stat|Health}} by '''1'''<br>{{Keyword|Barrage}}",
	Tribes={"Shademancers"},
	Price=25,
}
cards["Berry Blade"] = {
	Name="Berry Blade",
	Types={Item=true, ShopItem=true},
	Attack=4,
	Desc="Restore {{Stat|Health}} to front ally equal to damage dealt",
	Tribes={"All"},
	Price=50,
}
cards["Blank Mask"] = {
	Name="Blank Mask",
	Types={Item=true, ShopItem=true},
	Desc="Summon a copy of an ally<br>{{Keyword|Consume}}",
	Tribes={"Shademancers"},
	Price=65,
}
cards["Blaze Bom"] = {
	Name="Blaze Bom",
	Types={Item=true, ShopItem=true},
	Attack=0,
	Desc="Add '''x1''' {{Stat|Frenzy}}<br>Apply '''4''' {{Stat|Bom}}",
	Tribes={"Clunkmasters"},
	Price=50,
}
cards["Blaze Tea"] = {
	Name="Blaze Tea",
	Types={Item=true, ShopItem=true},
	Desc="Add '''x1''' {{Stat|Frenzy}}<br>Increase {{Stat|Counter}} by '''1'''<br>{{Keyword|Consume}}",
	Tribes={"All"},
	Price=62,
}
cards["Blizzard Bottle"] = {
	Name="Blizzard Bottle",
	Types={Item=true},
	Attack=0,
	Desc="Apply '''3''' {{Stat|Snow}}",
	Tribes={"All"},
	Price=30,
}
cards["Bom Barrel"] = {
	Name="Bom Barrel",
	Types={Item=true, ShopItem=true},
	Attack=0,
	Desc="Apply '''4''' {{Stat|Bom}}<br>{{Keyword|Barrage}}<br>{{Keyword|Trash}} '''4'''",
	Tribes={"Clunkmasters"},
	Price=50,
}

cards["Bonescraper"] = {
	Name="Bonescraper",
	Types={Item=true, ShopItem=true},
	Attack= 5,
	Desc="Killing an enemy counts as {{Keyword|Sacrifice|Sacrificing}} an ally",
	Tribes={"Shademancers"},
	Price=50,
}
cards["Broken Vase"] = {
	Name="Broken Vase",
	Types={Item=true, ShopItem=true},
	Attack=0,
	Desc="<span style=\"color:gray\">''Maybe it can be fixed...''</span>",
	Tribes={"All"},
	Price=15,
}
cards["Clockwork Bom"] = {
	Name="Clockwork Bom",
	Types={Item=true, ShopItem=true},
	Attack=2,
	Desc="Apply '''3''' {{Stat|Bom}}<br>{{Keyword|Critical}}",
	Tribes={"Clunkmasters"},
	Price=45,
}
cards["Demonheart"] = {
	Name="Demonheart",
	Types={Item=true, ShopItem=true},
	Attack=0,
	Desc="Apply '''1''' {{Stat|Demonize}}<br>Restore '''9''' {{Stat|Health}}",
	Tribes={"All"},
	Price=40,
}
cards["Dragon Pepper"] = {
	Name="Dragon Pepper",
	Types={Item=true, ShopItem=true},
	Desc="Apply '''7''' {{Stat|Spice}}<br>{{Keyword|Consume}}",
	Tribes={"Snowdwellers"},
	Price=55,
}
cards["Fallow Mask"] = {
	Name="Fallow Mask",
	Types={Item=true, ShopItem=true},
	Desc="Summon [[Fallow]]",
	Tribes={"Shademancers"},
	Price=50,
}
cards["Flamewater"] = {
	Name="Flamewater",
	Types={Item=true},
	Desc="Increase {{Stat|Attack}} by '''1'''",
	Tribes={"Snowdwellers"},
	Price=25,
}
cards["Flask of Ink"] = {
	Name="Flask of Ink",
	Types={Item=true},
	Attack=0,
	Desc="Apply '''4''' {{Stat|Ink}}",
	Tribes={"Clunkmasters"},
	Price=25,
}
cards["Foggy Brew"] = {
	Name="Foggy Brew",
	Types={Item=true, ShopItem=true},
	Attack=0,
	Desc="Apply '''1''' {{Stat|Haze}}<br>{{Keyword|Consume}}",
	Tribes={"Clunkmasters"},
	Price=50,
}
cards["Forging Stove"] = {
	Name="Forging Stove",
	Types={Item=true, ShopItem=true},
	Desc="Destroy a card in your hand<br>Add its {{Stat|Attack}} to a random ally",
	Tribes={"Clunkmasters"},
	Price=50,
}
cards["Frenzy Wrench"] = {
	Name="Frenzy Wrench",
	Types={Item=true, ShopItem=true},
	Desc="Add '''x1''' {{Stat|Frenzy}} to a card in your hand<br>{{Keyword|Recycle}} '''2'''",
	Tribes={"Clunkmasters"},
	Price=50,
}
cards["Frost Bell"] = {
	Name="Frost Bell",
	Types={Item=true, ShopItem=true},
	Attack=0,
	Desc="Apply '''2''' {{Stat|Frost}}<br>{{Keyword|Barrage}}",
	Tribes={"All"},
	Price=50,
}
cards["Frostbite Shard"] = {
	Name="Frostbite Shard",
	Types={Item=true, ShopItem=true},
	Desc="Reduce the target's effects by '''1'''<br>{{Keyword|Consume}}",
	Tribes={"Clunkmasters"},
	Price=50,
}
cards["Frostbloom"] = {
	Name="Frostbloom",
	Types={Item=true, ShopItem=true},
	Attack=0,
	Desc="Apply '''3''' {{Stat|Frost}}",
	Tribes={"All"},
	Price=45,
}
cards["Gearhammer"] = {
	Name="Gearhammer",
	Types={Item=true},
	Attack=2,
	Desc="Gain '''+1''' {{Stat|Attack}}",
	Tribes={"Clunkmasters"},
	Price=10,
}
cards["Gigi's Cookie Box"] = {
	Name="Gigi's Cookie Box",
	Types={Item=true, ShopItem=true},
	Desc="Add '''1''' {{Stat|Scrap}} to all allies<br>{{Keyword|Consume}}",
	Tribes={"Clunkmasters"},
	Price=50,
}
cards["Gigi's Gizmo"] = {
	Name="Gigi's Gizmo",
	Types={Item=true, ShopItem=true},
	Desc="Add '''1''' {{Stat|Scrap}}<br>{{Keyword|Recycle}} '''1'''<br>{{Keyword|Draw}} '''2'''",
	Tribes={"Clunkmasters"},
	Price=50,
}
cards["Grabber"] = {
	Name="Grabber",
	Types={InventorsHut=true, Item=true, ShopItem=true},
	Attack=1,
	Desc="{{Keyword|Noomlin}}<br>{{Keyword|Yank}}",
	Tribes={"All"},
	Price=40,
	Challenge="Kill 20 enemies with [[Items]]",
	ChallengeOrder=2,
}
cards["Gunk Fruit"] = {
	Name="Gunk Fruit",
	Types={Item=true},
	Attack=1,
	Desc="{{Keyword|Consume}}",
	Tribes={"All"},
	Price=0,
}
cards["Haze Keg"] = {
	Name="Haze Keg",
	Types={Item=true, ShopItem=true},
	Attack=0,
	Desc="Apply '''1''' {{Stat|Haze}}<br>{{Keyword|Recycle}} '''2'''",
	Tribes={"Clunkmasters"},
	Price=50,
}
cards["Hongo's Hammer"] = {
	Name="Hongo's Hammer",
	Types={Item=true, ShopItem=true},
	Attack=1,
	Desc="Apply '''3''' {{Stat|Shroom}}",
	Tribes={"Snowdwellers"},
	Price=40,
}
cards["Ice Dice"] = {
	Name="Ice Dice",
	Types={Item=true, ShopItem=true},
	Desc="Apply '''1''' {{Stat|Block}} to a random ally<br>Apply '''1''' {{Stat|Block}} to a random enemy",
	Tribes={"All"},
	Price=40,
}
cards["JunJun Mask"] = {
	Name="Junjun Mask",
	Link="JunJun Mask",
	Types={Item=true},
	Desc="Summon [[JunJun|Junjun]]",
	Tribes={"Shademancers"},
	Price=30,
	UniqueName="JunJun Mask"
}
cards["Junk"] = {
	Name="Junk",
	Types={Item=true},
	Attack=0,
	Desc="<span style=\"color:gray\">''Does absolutely nothing...''</span>",
	Tribes={"All"},
	Price=0,
}
cards["Leech Mask"] = {
	Name="Leech Mask",
	Types={Item=true, ShopItem=true},
	Desc="Summon [[Leech]] on the enemy side<br>{{Keyword|Consume}}",
	Tribes={"Shademancers"},
	Price=50,
}
cards["Lumin Goop"] = {
	Name="Lumin Goop",
	Types={Item=true, ShopItem=true},
	Desc="<span style=\"color:gray\">''Could be used to fix something...''</span>",
	Tribes={"All"},
	Price=15,
}
cards["Lumin Lantern"] = {
	Name="Lumin Lantern",
	Types={Item=true, ShopItem=true},
	Desc="Boost a random ally's effects by '''1'''<br>Boost a random enemy's effects by '''2'''",
	Tribes={"Clunkmasters"},
	Price=50,
}
cards["Magma Booster"] = {
	Name="Magma Booster",
	Types={Item=true, ShopItem=true},
	Desc="Increase {{Stat|Attack}} by '''3'''<br>Add {{Keyword|Aimless}} to the target",
	Tribes={"Clunkmasters"},
	Price=50,
}
cards["Mini Muncher"] = {
	Name="Mini Muncher",
	Types={Item=true, ShopItem=true},
	Desc="Destroy a card in your hand<br>{{Keyword|Noomlin}}",
	Tribes={"Clunkmasters"},
	Price=50,
}
cards["Molten Dip"] = {
	Name="Molten Dip",
	Types={Item=true, ShopItem=true},
	Desc="Increase {{Stat|Attack}} by '''2'''<br>{{Keyword|Barrage}}<br>{{Keyword|Consume}}",
	Tribes={"All"},
	Price=50,
}
cards["Noomlin Biscuit"] = {
	Name="Noomlin Biscuit",
	Types={Item=true, ShopItem=true},
	Desc="Add {{Keyword|Noomlin}} to a card in your hand<br>{{Keyword|Consume}}",
	Tribes={"All"},
	Price=55,
}
cards["Nutshell Cake"] = {
	Name="Nutshell Cake",
	Types={Item=true, ShopItem=true},
	Desc="Apply '''9''' {{Stat|Shell}}<br>Reduce {{Stat|Health}} by '''2'''<br>{{Keyword|Consume}}",
	Tribes={"Snowdwellers"},
	Price=50,
}
cards["Peppereaper"] = {
	Name="Peppereaper",
	Types={Item=true, ShopItem=true},
	Attack=1,
	Desc="Apply '''4''' {{Stat|Spice}}",
	Tribes={"Snowdwellers"},
	Price=45,
}
cards["Peppering"] = {
	Name="Peppering",
	Types={Item=true, ShopItem=true},
	Desc="Apply '''2''' {{Stat|Spice}} to all allies",
	Tribes={"Snowdwellers"},
	Price=40,
}
cards["Pinkberry Juice"] = {
	Name="Pinkberry Juice",
	Types={Item=true, ShopItem=true},
	Desc="Increase {{Stat|Health}} by '''4'''",
	Tribes={"All"},
	Price=50,
}
cards["Pom Mask"] = {
	Name="Pom Mask",
	Types={Item=true, ShopItem=true},
	Desc="Summon [[Pom]] on the enemy side<br>{{Keyword|Consume}}",
	Tribes={"Shademancers"},
	Price=50,
}
cards["Pombomb"] = {
	Name="Pombomb",
	Types={Item=true, ShopItem=true},
	Attack=5,
	Desc="Hits all undamaged enemies",
	Tribes={"All"},
	Price=50,
}
cards["Proto-Stomper"] = {
	Name="Proto-Stomper",
	Types={Item=true, ShopItem=true},
	Attack=8,
	Desc="{{Keyword|Trash}} '''2'''",
	Tribes={"Clunkmasters"},
	Price=55,
}
cards["Scrap Pile"] = {
	Name="Scrap Pile",
	Types={InventorsHut=true, Item=true, ShopItem=true},
	Desc="Add '''1''' {{Stat|Scrap}}",
	Tribes={"Snowdwellers"},
	Price=40,
	Challenge="Block 10 hits with [[Clunkers]]",
	ChallengeOrder=3,
}
cards["Scrappy Sword"] = {
	Name="Scrappy Sword",
	Types={Item=true},
	Attack=2,
	Desc="<span style=\"color:gray\">''A traditional trusty weapon''</span>",
	Tribes={"Snowdwellers"},
	Price=10,
}
cards["Shade Clay"] = {
	Name="Shade Clay",
	Types={Item=true, ShopItem=true},
	Desc="Make a copy of an '''Item''' in your hand<br>{{Keyword|Consume}}",
	Tribes={"Shademancers"},
	Price=50,
}
cards["Shade Wisp"] = {
	Name="Shade Wisp",
	Types={Item=true, ShopItem=true},
	Desc="Summon a copy of an enemy on your side with '''1''' {{Stat|Health}}",
	Tribes={"Shademancers"},
	Price=50,
}
cards["Sheepopper Mask"] = {
	Name="Sheepopper Mask",
	Types={Item=true, ShopItem=true},
	Desc="Summon [[Sheepopper]] on the enemy side<br>{{Keyword|Consume}}",
	Tribes={"Shademancers"},
	Price=50,
}
cards["Shell Shield"] = {
	Name="Shell Shield",
	Types={Item=true, ShopItem=true},
	Desc="Apply '''4''' {{Stat|Shell}}",
	Tribes={"Snowdwellers"},
	Price=40,
}
cards["Shellbo"] = {
	Name="Shellbo",
	Types={Item=true, ShopItem=true},
	Attack=2,
	Desc="Apply '''5''' {{Stat|Shell}}<br>{{Keyword|Barrage}}",
	Tribes={"Snowdwellers"},
	Price=50,
}
cards["Skullmist Tea"] = {
	Name="Skullmist Tea",
	Types={Item=true, ShopItem=true},
	Attack=0,
	Desc="Kill an ally<br>Add their {{Stat|Attack}} to all allies<br>{{Keyword|Consume}}",
	Tribes={"Shademancers"},
	Price=50,
}

cards["Skull Muffin"] = {
	Name="Skull Muffin",
	Types={Item=true, ShopItem=true},
	Attack= 0,
	Desc="Kill an ally<br>{{Keyword|Zoomlin}}<br>{{Keyword|Consume}}",
	Tribes={"Shademancers"},
	Price=50,
}


cards["Slapcrackers"] = {
	Name="Slapcrackers",
	Types={InventorsHut=true, Item=true, ShopItem=true},
	Attack=1,
	Other="x4 {{Stat|Frenzy}}",
	Desc="{{Keyword|Aimless}}",
	Tribes={"All"},
	Price=50,
	Challenge="Achieve a 3x kill combo",
	ChallengeOrder=0,
}
cards["Snow Stick"] = {
	Name="Snow Stick",
	Types={Item=true},
	Attack=1,
	Desc="Apply '''2''' {{Stat|Snow}}",
	Tribes={"Snowdwellers"},
	Price=30,
}
cards["Snowcake"] = {
	Name="Snowcake",
	Types={Item=true, ShopItem=true},
	Attack=0,
	Desc="Apply '''10''' {{Stat|Snow}}<br>{{Keyword|Consume}}",
	Tribes={"All"},
	Price=50,
}
cards["Snowzooka"] = {
	Name="Snowzooka",
	Types={Item=true},
	Attack=0,
	Desc="Apply '''2''' {{Stat|Snow}}<br>{{Keyword|Critical}}",
	Tribes={"Clunkmasters"},
	Price=30,
}

cards["Snuffer Mask"] = {
	Name="Snuffer Mask",
	Types={Item=true, ShopItem=true},
	Desc="Summon [[Snuffer]]<br>{{Keyword|Consume}}",
	Tribes={"Shademancers"},
	Price=50,
}


cards["Soulbound Skulls"] = {
	Name="Soulbound Skulls",
	Types={Item=true, ShopItem=true},
	Desc="Add {{Keyword|Soulbound}} to an ally<br>Add {{Keyword|Soulbound}} to a random enemy",
	Tribes={"Shademancers"},
	Price=50,
}
cards["Spice Stones"] = {
	Name="Spice Stones",
	Types={Item=true, ShopItem=true},
	Desc="Apply '''1''' {{Stat|Spice}}<br>Double the target's {{Stat|Spice}}",
	Tribes={"Snowdwellers"},
	Price=50,
}
cards["Spore Pack"] = {
	Name="Spore Pack",
	Types={Item=true, ShopItem=true},
	Attack=0,
	Desc="Apply '''2''' {{Stat|Shroom}}<br>{{Keyword|Barrage}}",
	Tribes={"Snowdwellers"},
	Price=50,
}
cards["Storm Globe"] = {
	Name="Storm Globe",
	Types={Item=true, ShopItem=true},
	Attack=0,
	Desc="Apply '''4''' {{Stat|Snow}}<br>Reduce by 1 when played",
	Tribes={"All"},
	Price=40,
}
cards["Stormbear Spirit"] = {
	Name="Stormbear Spirit",
	Types={Item=true, ShopItem=true},
	Attack=8,
	Desc="Target must be {{Stat|Snow}}'d",
	Tribes={"Snowdwellers"},
	Price=45,
}
cards["Sun Rod"] = {
	Name="Sun Rod",
	Types={Item=true},
	Desc="Count down {{Stat|Counter}} by '''2'''",
	Tribes={"Snowdwellers"},
	Price=50,
}
cards["Sunburst Tootoo"] = {
	Name="Sunburst Tootoo",
	Types={Item=true},
	Attack=1,
	Desc="Count down {{Stat|Counter}} by '''2'''",
	Tribes={"Shademancers"},
	Price=50,
}
cards["Suncream"] = {
	Name="Suncream",
	Types={Item=true, ShopItem=true},
	Desc="Reduce {{Stat|Counter}} by '''1'''<br>{{Keyword|Recycle}} '''1'''<br>{{Keyword|Consume}}",
	Tribes={"Clunkmasters"},
	Price=60,
}
cards["Sunlight Drum"] = {
	Name="Sunlight Drum",
	Types={Item=true, ShopItem=true},
	Desc="Count down {{Stat|Counter}} by '''1'''<br>{{Keyword|Barrage}}",
	Tribes={"All"},
	Price=50,
}
cards["Sunsong Box"] = {
	Name="Sunsong Box",
	Types={Item=true},
	Desc="Increase {{Stat|Attack}} by '''1'''<br>Count down {{Stat|Counter}} by '''1'''<br>{{Keyword|Recycle}} '''1'''",
	Tribes={"Clunkmasters"},
	Price=50,
}
cards["Supersnower"] = {
	Name="Supersnower",
	Types={Item=true, ShopItem=true},
	Attack=0,
	Desc="Apply '''3''' {{Stat|Snow}}<br>{{Keyword|Barrage}}<br>{{Keyword|Recycle}} '''2'''",
	Tribes={"Clunkmasters"},
	Price=50,
}
cards["Tar Blade"] = {
	Name="Tar Blade",
	Types={Item=true},
	Attack=0,
	Desc="Deal additional damage equal to [[Tar Blade]]s in hand",
	Tribes={"Shademancers"},
	Price=10,
}
cards["The Lumin Vase"] = {
	Name="The Lumin Vase",
	Types={Item=true},
	Desc="Apply {{Stat|Lumin}}",
	Tribes={"All"},
	Price=500,
}
cards["Tiger Skull"] = {
	Name="Tiger Skull",
	Types={Item=true, ShopItem=true},
	Attack=0,
	Desc="Kill an ally<br>Apply '''3''' {{Stat|Teeth}} to allies in the row",
	Tribes={"Shademancers"},
	Price=50,
}
cards["Tigris Mask"] = {
	Name="Tigris Mask",
	Types={Item=true, ShopItem=true},
	Desc="Summon [[Tigris]]<br>{{Keyword|Consume}}",
	Tribes={"Shademancers"},
	Price=50,
}
cards["Yeti Skull"] = {
	Name="Yeti Skull",
	Types={Item=true, ShopItem=true},
	Attack=0,
	Desc="Kill an ally<br>Apply '''3''' {{Stat|Snow}} to enemies in the row",
	Tribes={"Shademancers"},
	Price=50,
}

cards["Zoomlin Wafers"] = {
	Name="Zoomlin Wafers",
	Types={Item=true, ShopItem=true},
	Desc="Add {{Keyword|Zoomlin}} to all cards in your hand<br>{{Keyword|Consume}}",
	Tribes={"All"},
	Price=55,
}


--Shades
cards["Beepop"] = {
	Name="Beepop",
	Types={Shade=true},
	Health=1,
	Desc="When destroyed, apply '''4''' {{Stat|Overburn}} to the attacker",
	SummonCon="Using [[Beepop Mask]]",
}
cards["Chikagoru"] = {
	Name="Chikagoru",
	Types={Shade=true},
	Health=10,
	Attack=10,
	Counter=3,
	SummonCon="{{Keyword|Sacrifice|Sacrificing}} [[Chikashi]]",
}
cards["Chikani"] = {
	Name="Chikani",
	Types={Shade=true},
	Health=4,
	Attack=4,
	Counter=3,
	Desc="When {{Keyword|Sacrifice|Sacrificed}}, summon [[Chikasan]]",
	SummonCon="{{Keyword|Sacrifice|Sacrificing}} [[Chikichi]]",
}
cards["Chikasan"] = {
	Name="Chikasan",
	Types={Shade=true},
	Health=6,
	Attack=6,
	Counter=3,
	Desc="When {{Keyword|Sacrifice|Sacrificed}}, summon [[Chikashi]]",
	SummonCon="{{Keyword|Sacrifice|Sacrificing}} [[Chikani]]",
}
cards["Chikashi"] = {
	Name="Chikashi",
	Types={Shade=true},
	Health=8,
	Attack=8,
	Counter=3,
	Desc="When {{Keyword|Sacrifice|Sacrificed}}, summon [[Chikagoru]]",
	SummonCon="{{Keyword|Sacrifice|Sacrificing}} [[Chikasan]]",
}
cards["Dregg"] = {
	Name="Dregg",
	Types={Shade=true},
	Health=4,
	Attack=5,
	Counter=5,
	Other="x3 {{Stat|Frenzy}}",
	SummonCon="[[Egg]] is destroyed",
}
cards["Fallow"] = {
	Name="Fallow",
	Types={Shade=true},
	Health=6,
	Attack=2,
	Counter=4,
	Desc="{{Keyword|Barrage}}",
	SummonCon="Using [[Fallow Mask]]",
}
cards["JunJun"] = {
	Name="Junjun",
	Link="JunJun",
	Types={Shade=true},
	Health=3,
	Attack=2,
	Counter=3,
	Desc="{{Keyword|Aimless}}",
	SummonCon="Using [[JunJun Mask|Junjun Mask]]",
	UniqueName="JunJun"
}
cards["Leech"] = {
	Name="Leech",
	Types={Shade=true},
	Health=5,
	Attack=2,
	Counter=3,
	Desc="Take '''3''' {{Stat|Health}} from all allies",
	SummonCon="Using [[Leech Mask]]",
}
cards["Pom"] = {
	Name="Pom",
	Types={Shade=true},
	Health=7,
	Desc="While active, add {{Keyword|Barrage}} to all enemies",
	SummonCon="Using [[Pom Mask]]",
}
cards["Sheepopper"] = {
	Name="Sheepopper",
	Types={Shade=true},
	Health=4,
	Desc="When destroyed, deal '''8''' damage to all allies",
	SummonCon="Using [[Sheepopper Mask]]",
}
cards["Snuffer"] = {
	Name="Snuffer",
	Types={Shade=true},
	Health= 4,
	Desc="When {{Keyword|Sacrifice|Sacrificed}}, add '''+1''' {{Stat|Attack}} to all allies and resummon",
	SummonCon="Using [[Snuffer Mask]] or by {{Keyword|Sacrifice|Sacrificing}} Snuffer",
}
cards["Tigris"] = {
	Name="Tigris",
	Types={Shade=true},
	Health=5,
	Other="2 {{Stat|Teeth}}",
	Desc="Gain '''1''' {{Stat|Teeth}} when hit, or an ally is hit",
	SummonCon="Using [[Tigris Mask]]",
}

--Enemies
cards["Baby Snowbo"] = {
	Name="Baby Snowbo",
	Types={Enemy=true},
	Health=1,
	Attack=1,
	Counter=2,
	Gold=2
}
cards["Beeberry"] = {
	Name="Beeberry",
	Types={Enemy=true},
	Health= 2,
	Attack= 1,
	Counter= 3,
	Desc="When destroyed, add '''+1''' {{Stat|Health}} to all allies",
	Gold=2
}
cards["Berry Witch"] = {
	Name="Berry Witch",
	Types={Enemy=true},
	Health=6,
	Attack=2,
	Counter=4,
	Desc="Restore '''2''' {{Stat|Health}} to all allies",
	Gold=5
}
cards["Bigfoot"] = {
	Name="Bigfoot",
	Types={Enemy=true},
	Health=12,
	Attack=5,
	Counter=4,
	Desc="{{Keyword|Barrage}}",
	Gold=5
}
cards["Blaze Beetles"] = {
	Name="Blaze Beetles",
	Types={Enemy=true},
	Health= 11,
	Attack= 1,
	Counter= 3,
	Desc="When a card is destroyed, gain '''x1''' {{Stat|Frenzy}}<br>{{Keyword|Barrage}}",
	Gold=7
}
cards["Bulbhead"] = {
	Name="Bulbhead",
	Types={Enemy=true},
	Health=8,
	Attack=0,
	Counter=5,
	Desc="Apply '''2''' {{Stat|Shroom}}<br>{{Keyword|Barrage}}",
	Gold=6
}
cards["Burster"] = {
	Name="Burster",
	Types={Enemy=true},
	Health=10,
	Attack=1,
	Counter=4,
	Other="{{Stat|Resist Snow}}",
	Desc="Apply '''1''' {{Stat|Haze}}",
	Gold=7
}
cards["Chungoon"] = {
	Name="Chungoon",
	Types={Enemy=true},
	Health=6,
	Attack=1,
	Counter=3,
	Desc="When hit, gain '''+1''' {{Stat|Attack}}",
	Gold=5
}
cards["Conker"] = {
	Name="Conker",
	Types={Enemy=true},
	Health=2,
	Attack=2,
	Counter=5,
	Other="10 {{stat|Shell}}",
	Desc="Deal additional damage equal to {{Stat|Shell}}",
	Gold=7
}
cards["Dungrok"] = {
	Name="Dungrok",
	Types={Enemy=true},
	Health= 14,
	Attack= 4,
	Counter= 3,
	Other="{{Stat|Resist Snow}}",
	Desc="Destroy the rightmost card in your hand",
	Gold=7
}
cards["Earth Berry"] = {
	Name="Earth Berry",
	Types={Enemy=true},
	Health=6,
	Attack=0,
	Counter=3,
	Desc="Deal additional damage equal to {{Stat|Health}}",
	Gold=5
}
cards["Frostinger"] = {
	Name="Frostinger",
	Types={Enemy=true},
	Health=8,
	Attack=1,
	Counter=3,
	Desc="Apply '''1''' {{Stat|Frost}}",
	Gold=6
}
cards["Gobbler"] = {
	Name="Gobbler",
	Types={Enemy=true},
	Health=7,
	Attack=1,
	Counter=3,
	Desc="When an ally is killed, gain their {{Stat|Attack}}",
	Gold=2
}
cards["Gobling"] = {
	Name="Gobling",
	Types={Enemy=true},
	Health=6,
	Counter=4,
	Desc="Escape from the battle<br>Drop '''4''' {{Bling}} when hit",
	Gold="Doesn't drop gold"
}
cards["Gogong"] = {
	Name="Gogong",
	Types={Enemy=true},
	Health=5,
	Attack=2,
	Other="{{Stat|Reaction}}",
	Desc="{{Keyword|Smackback}}",
	Gold=5
}
cards["Gok"] = {
	Name="Gok",
	Types={Enemy=true},
	Health=18,
	Attack=5,
	Counter=5,
	Desc="When hit, apply '''1''' {{Stat|Demonize}} to the attacker",
	Gold=2
}
cards["Grink"] = {
	Name="Grink",
	Types={Enemy=true},
	Health=8,
	Attack=1,
	Counter=2,
	Desc="Apply '''2''' {{Stat|Frost}}",
	Gold=2
}
cards["Grizzle"] = {
	Name="Grizzle",
	Types={Enemy=true},
	Health=16,
	Attack=4,
	Counter=5,
	Other="{{Stat|Resist Snow}}",
	Desc="Apply '''3''' {{Stat|Snow}}",
	Gold=7
}
cards["Grog"] = {
	Name="Grog",
	Types={Enemy=true},
	Health=12,
	Attack=6,
	Counter=8,
	Desc="When hit, count down {{Stat|Counter}} by '''1'''",
	Gold=3
}
cards["Gromble"] = {
	Name="Gromble",
	Types={Enemy=true},
	Health=12,
	Attack=2,
	Counter=2,
	Gold=3
}
cards["Grouchy"] = {
	Name="Grouchy",
	Types={Enemy=true},
	Health=5,
	Attack=2,
	Counter=4,
	Desc="While damaged, {{Stat|Attack}} is increased by '''2'''",
	Gold=3
}
cards["Grumps"] = {
	Name="Grumps",
	Types={Enemy=true},
	Health=9,
	Attack=10,
	Counter=8,
	Desc="When hit, reduce the attacker's {{Stat|Attack}} by '''1'''",
	Gold=6
}
cards["Gunk Gobbler"] = {
	Name="Gunk Gobbler",
	Types={Enemy=true},
	Health= 7,
	Attack= 0,
	Counter= 3,
	Desc="When a card is destroyed, gain '''+2''' {{Stat|Attack}}",
	Gold=7
}
cards["Gunkback"] = {
	Name="Gunkback",
	Types={Enemy=true},
	Health= 10,
	Attack= 4,
	Counter= 4,
	Other="{{Stat|Resist Snow}}",
	Desc="When hit, add [[Gunk Fruit]] to your hand",
	Gold=7
}
cards["Hog"] = {
	Name="Hog",
	Types={Enemy=true},
	Health=1,
	Attack=1,
	Counter=2,
	Desc="{{Keyword|Wild}}",
	Gold=2
}
cards["Jab Joat"] = {
	Name="Jab Joat",
	Types={Enemy=true},
	Health=10,
	Attack=1,
	Counter=3,
	Other="x2 {{stat|Frenzy}}",
	Gold=2
}
cards["Krab"] = {
	Name="Krab",
	Types={Enemy=true},
	Health=5,
	Attack=8,
	Counter=5,
	Other="3 {{Stat|Block}}",
	Gold=7
}
cards["Kraken"] = {
	Name="Kraken",
	Types={Enemy=true},
	Health= 20,
	Attack= 3,
	Counter= 4,
	Other="{{Stat|Resist Snow}}",
	Desc="Hits all enemies",
	Gold=6
}
cards["Krawler"] = {
	Name="Krawler",
	Types={Enemy=true},
	Health=10,
	Attack=4,
	Counter=3,
	Desc="When hit, apply '''2''' {{Stat|Block}} to a random ally",
	Gold=7
}
cards["Lump"] = {
	Name="Lump",
	Types={Enemy=true},
	Health= 2,
	Attack= 1,
	Counter= 3,
	Desc="While active, add '''+1''' {{Stat|Attack}} to all allies",
	Gold=2
}
cards["Makoko"] = {
	Name="Makoko",
	Types={Enemy=true},
	Health=8,
	Attack=0,
	Counter=1,
	Desc="Gain '''+1''' {{Stat|Attack}}",
	Gold=2
}
cards["Marrow"] = {
	Name="Marrow",
	Types={Enemy=true},
	Health=14,
	Attack=2,
	Counter=4,
	Desc="While active, add '''2''' {{Stat|Teeth}} to all allies",
	Gold=5
}
cards["Minimoko"] = {
	Name="Minimoko",
	Types={Enemy=true},
	Health=6,
	Attack=1,
	Counter=2,
	Desc="Gain '''+1''' {{Stat|Attack}}",
	Gold=2
}
cards["Naked Gnome (Enemy)"] = {
	Name="Naked Gnome",
	Image="Naked Gnome",
	Link="Naked Gnome",
	Types={Enemy=true},
	Health=1,
	Desc="<span style=\"color:grey\"> ''Does absolutely nothing...'' </span>",
	Gold="Doesn't drop gold",
	UniqueName="Naked Gnome (Enemy)"
}
cards["Octako"] = {
	Name="Octako",
	Types={Enemy=true},
	Health= 10,
	Attack= 2,
	Counter= 3,
	Desc="Apply '''2''' {{Stat|Ink}}<br>{{Keyword|Barrage}}",
	Gold=4
}
cards["Ooba Bear"] = {
	Name="Ooba Bear",
	Types={Enemy=true},
	Health=6,
	Attack=4,
	Counter=3,
	Desc="When hit, apply '''2''' {{Stat|Snow}} to the attacker",
	Gold=5
}
cards["Paw Paw"] = {
	Name="Paw Paw",
	Types={Enemy=true},
	Health=10,
	Attack=1,
	Counter=3,
	Desc="When hit, gain '''2''' {{Stat|Teeth}}",
	Gold=5
}
cards["Pecan"] = {
	Name="Pecan",
	Types={Enemy=true},
	Health=2,
	Attack=4,
	Counter=4,
	Other="6 {{stat|Shell}}",
	Desc="Gain '''2''' {{Stat|Shell}}",
	Gold=7
}
cards["Pengoon"] = {
	Name="Pengoon",
	Types={Enemy=true},
	Health=2,
	Attack=1,
	Counter=2,
	Gold=2
}
cards["Pepper Witch"] = {
	Name="Pepper Witch",
	Types={Enemy=true},
	Health=8,
	Attack=1,
	Counter=3,
	Desc="When hit, apply '''2''' {{Stat|Spice}} to allies in the row",
	Gold=2
}
cards["Plum"] = {
	Name="Plum",
	Types={Enemy=true},
	Health=15,
	Attack=2,
	Counter=3,
	Desc="Restore '''4''' {{Stat|Health}} to all allies",
	Gold=7
}
cards["Popshroom"] = {
	Name="Popshroom",
	Types={Enemy=true},
	Health=6,
	Attack=0,
	Counter=4,
	Desc="Apply '''4''' {{Stat|Shroom}}<br>Destroy self",
	Gold=7
}
cards["Porkypine"] = {
	Name="Porkypine",
	Types={Enemy=true},
	Health=6,
	Attack=2,
	Counter=4,
	Desc="{{Keyword|Barrage}}",
	Gold=6
}
cards["Prickle"] = {
	Name="Prickle",
	Types={Enemy=true},
	Health=5,
	Counter=3,
	Other="2 {{Stat|Teeth}}",
	Desc="Gain '''2''' {{Stat|Teeth}}",
	Gold=6
}
cards["Puffball"] = {
	Name="Puffball",
	Types={Enemy=true},
	Health=2,
	Attack=0,
	Other="{{Stat|Reaction}}",
	Desc="Apply '''2''' {{Stat|Shroom}}<br><div style=\"color:brown;\">Trigger against the target when an ally attacks</div>",
	Gold=5
}
cards["Pygmy"] = {
	Name="Pygmy",
	Types={Enemy=true},
	Health=5,
	Attack=0,
	Counter=2,
	Desc="Apply '''1''' {{Stat|Demonize}}<br>{{Keyword|Barrage}}",
	Gold=2
}
cards["Rockhog"] = {
	Name="Rockhog",
	Types={Enemy=true},
	Health=7,
	Attack=4,
	Counter=6,
	Desc="While active, add '''x1''' {{Stat|Frenzy}} to all allies",
	Gold=7
}
cards["Shell Witch"] = {
	Name="Shell Witch",
	Types={Enemy=true},
	Health=6,
	Attack=2,
	Counter=3,
	Desc="Apply '''2''' {{Stat|Shell}} to all allies",
	Gold=5
}
cards["Shroom Gobbler"] = {
	Name="Shroom Gobbler",
	Types={Enemy=true},
	Health=12,
	Attack=2,
	Counter=5,
	Desc="Whenever anything takes damage from {{Stat|Shroom}}, gain '''+1''' {{Stat|Attack}}",
	Gold=6
}
cards["Shrootles"] = {
	Name="Shrootles",
	Types={Enemy=true},
	Health=8,
	Attack=0,
	Counter=3,
	Other="x3 {{Stat|Frenzy}}",
	Desc="Apply '''1''' {{Stat|Shroom}}<br>{{Keyword|Aimless}}",
	Gold=6
}
cards["Smog"] = {
	Name="Smog",
	Types={Enemy=true},
	Health=10,
	Attack=5,
	Counter=6,
	Desc="While active, add {{Keyword|Aimless}} to all enemies",
	Gold=5
}
cards["Snow Gobbler"] = {
	Name="Snow Gobbler",
	Types={Enemy=true},
	Health=8,
	Attack=1,
	Counter=5,
	Desc="Whenever anything is {{Stat|Snow}}'d, gain '''+2''' {{Stat|Attack}}",
	Gold=6
}
cards["Snowbirb"] = {
	Name="Snowbirb",
	Types={Enemy=true},
	Health=4,
	Attack=1,
	Counter=3,
	Desc="Apply '''4''' {{Stat|Snow}}<br>{{Keyword|Longshot}}",
	Gold=5
}
cards["Snowbo"] = {
	Name="Snowbo",
	Types={Enemy=true},
	Health=4,
	Attack=1,
	Counter=2,
	Desc="{{Keyword|Aimless}}",
	Gold=4
}
cards["Spuncher"] = {
	Name="Spuncher",
	Types={Enemy=true},
	Health=15,
	Attack=3,
	Counter=3,
	Gold=2
}
cards["Tentickle"] = {
	Name="Tentickle",
	Types={Enemy=true},
	Health=7,
	Attack=4,
	Counter=4,
	Other="{{Stat|Resist Snow}}",
	Desc="When hit, apply '''3''' {{Stat|Ink}} to the attacker",
	Gold=7
}
cards["Waddlegoons"] = {
	Name="Waddlegoons",
	Types={Enemy=true},
	Health=9,
	Attack=1,
	Counter=3,
	Other="x3 {{Stat|Frenzy}}",
	Gold=7
}
cards["Warthog"] = {
	Name="Warthog",
	Types={Enemy=true},
	Health=18,
	Attack=5,
	Counter=5,
	Other="{{Stat|Reaction}}",
	Desc="{{Keyword|Wild}}<br>{{Keyword|Smackback}}",
	Gold=7
}
cards["Wild Snoolf"] = {
	Name="Wild Snoolf",
	Types={Enemy=true},
	Health=4,
	Attack=1,
	Counter=3,
	Desc="Apply '''2''' {{Stat|Snow}}",
	Gold=5
}
cards["Willow"] = {
	Name="Willow",
	Types={Enemy=true},
	Health=16,
	Attack=0,
	Counter=5,
	Desc="Apply '''5''' {{Stat|Overburn}}",
	Gold=7
}
cards["Winter Worm"] = {
	Name="Winter Worm",
	Types={Enemy=true},
	Health=10,
	Attack=8,
	Counter=6,
	Desc="When hit, reduce {{Stat|Attack}} by '''1'''",
	Gold=7
}
cards["Woolly Drek"] = {
	Name="Woolly Drek",
	Types={Enemy=true},
	Health=28,
	Attack=3,
	Counter=5,
	Other="{{Stat|Resist Snow}}",
	Desc="Eat and {{Keyword|Absorb}} a random ally",
	Gold=7
}

--Enemy Clunkers
cards["Bombarder (Enemy)"] = {
	Name="Bombarder",
	Types={EnemyClunker=true},
	Scrap=3,
	Attack=0,
	Counter=4,
	Desc="Apply '''2''' {{Stat|Bom}}<br>Hits all enemies",
	UniqueName="Bombarder (Enemy)"
}
cards["Ice Forge"] = {
	Name="Ice Forge",
	Types={EnemyClunker=true},
	Scrap=2,
	Desc="While active, add '''+2''' {{Stat|Attack}} to all allies and '''-2''' {{Stat|Attack}} to all enemies",
}
cards["Ice Lantern"] = {
	Name="Ice Lantern",
	Types={EnemyClunker=true},
	Scrap=1,
	Desc="While active, add '''+2''' {{Stat|Attack}} to all allies",
}
cards["Moko Head"] = {
	Name="Moko Head",
	Types={EnemyClunker=true},
	Scrap=1,
	Desc="When destroyed, apply '''5''' {{Stat|Spice}} to all allies",
}
cards["Octobom"] = {
	Name="Octobom",
	Types={EnemyClunker=true},
	Scrap= 1,
	Desc="When destroyed, apply '''4''' {{Stat|Ink}} to all enemies and allies",
}
cards["Spike Wall"] = {
	Name="Spike Wall",
	Types={EnemyClunker=true},
	Scrap=3,
	Attack=3,
	Other="{{Stat|Reaction}}",
	Desc="{{Keyword|Frontline}}<br>{{Keyword|Smackback}}",
}

--Minibosses
cards["Big Peng"] = {
	Name="Big Peng",
	Types={Miniboss=true},
	Health=10,
	Attack=1,
	Counter=4,
	Desc="Gain '''+1''' {{Stat|Attack}} when an ally is killed",
}
cards["Bigloo"] = {
	Name="Bigloo",
	Types={Miniboss=true},
	Health=30,
	Attack=5,
	Counter=4,
	Other="{{Stat|Resist Snow}}",
	Desc="Apply '''2''' {{Stat|Snow}}<br>{{Keyword|Barrage}}",
}
cards["Bogberry"] = {
	Name="Bogberry",
	Types={Miniboss=true},
	Health= 8,
	Attack= 1,
	Counter= 4,
	Desc="When healed, gain '''+2''' {{Stat|Attack}}",
}
cards["Bolgo"] = {
	Name="Bolgo",
	Types={Miniboss=true},
	Health=20,
	Attack=5,
	Counter=3,
	Other="10 {{Stat|Shell}}",
	Desc="When hit, gain '''+1''' {{Stat|Attack}}",
}
cards["Bumbo"] = {
	Name="Bumbo",
	Types={Miniboss=true},
	Health=15,
	Attack=3,
	Counter=4,
	Other="{{Stat|Resist Snow}}",
	Desc="Apply '''2''' {{Stat|Snow}}<br>{{Keyword|Barrage}}",
}
cards["King Moko"] = {
	Name="King Moko",
	Types={Miniboss=true},
	Health=80,
	Attack=10,
	Counter=7,
	Other="x5 {{Stat|Frenzy}}<br>{{Stat|Resist Snow}}",
	Desc="When hit, apply '''3''' {{Stat|Spice}} to everyone in the battle",
}
cards["Lumako"] = {
	Name="Lumako",
	Types={Miniboss=true},
	Health= 30,
	Attack= 3,
	Counter= 3,
	Other="{{Stat|Resist Snow}}",
	Desc="Boost the effects of all enemies and allies by '''1'''",
}
cards["Maw Jaw"] = {
	Name="Maw Jaw",
	Types={Miniboss=true},
	Health=30,
	Attack=5,
	Counter=4,
	Other="{{Stat|Reaction}}",
	Desc="<div style=\"color:brown;\">Trigger when hit</div>",
}
cards["Muttonhead"] = {
	Name="Muttonhead",
	Types={Miniboss=true},
	Health=30,
	Attack=4,
	Counter=3,
	Desc="When {{Stat|Snow}}'d, apply '''1''' {{Stat|Demonize}} to all enemies",
}
cards["Nimbus"] = {
	Name="Nimbus",
	Types={Miniboss=true},
	Health= 10,
	Attack= 2,
	Counter= 5,
	Desc="{{Keyword|Barrage}}",
}
cards["Numskull"] = {
	Name="Numskull",
	Types={Miniboss=true},
	Health=30,
	Attack=6,
	Counter=4,
	Other="8 {{Stat|Block}}<br>{{Stat|Resist Snow}}",
	Desc="While active, add {{Keyword|Hogheaded}} to all enemies",
}
cards["Queen Globerry"] = {
	Name="Queen Globerry",
	Types={Miniboss=true},
	Health=15,
	Attack=0,
	Counter=5,
	Other="{{Stat|Resist Snow}}",
	Desc="Deal additional damage equal to {{Stat|Health}}",
}
cards["Razor"] = {
	Name="Razor",
	Types={Miniboss=true},
	Health=50,
	Attack=3,
	Counter=3,
	Other="{{Stat|Resist Snow}}",
	Desc="{{Keyword|Wild}}",
}
cards["The Ringer"] = {
	Name="The Ringer",
	Types={Miniboss=true},
	Health=15,
	Attack=5,
	Counter=5,
	Other="{{Stat|Resist Snow}}",
	Desc="When hit, apply '''2''' {{Stat|Frost}} to a random enemy",
}
cards["The Snow Knight"] = {
	Name="The Snow Knight",
	Types={Miniboss=true},
	Health=10,
	Attack=1,
	Counter=2,
	Desc="Whenever anything is {{Stat|Snow}}'d, gain '''+1''' {{Stat|Attack}}",
}
cards["Veiled Lady"] = {
	Name="Veiled Lady",
	Types={Miniboss=true},
	Health=12,
	Attack=0,
	Counter=3,
	Other="{{Stat|Resist Snow}}",
	Desc="Apply '''3''' {{Stat|Shroom}}",
}
cards["Weevil"] = {
	Name="Weevil",
	Types={Miniboss=true},
	Health= 50,
	Attack= 4,
	Counter= 4,
	Other="{{Stat|Resist Snow}}",
	Desc="Before attacking, destroy all [[Items]] in hand and gain '''+1''' {{Stat|Attack}} for each",
}


--Bosses
cards["Bam"] = {
	Name="Bam",
	Types={Boss=true},
	Health=16,
	Attack=6,
	Counter=6,
	Other="{{Stat|Resist Snow}}",
	Desc="{{Keyword|Wild}}",
}
cards["Bamboozle"] = {
	Name="Bamboozle",
	Types={Boss=true},
	Health=18,
	Attack=3,
	Counter=5,
	Other="{{Stat|Resist Snow}}",
	Desc="Hits all enemies",
}
cards["Boozle"] = {
	Name="Boozle",
	Types={Boss=true},
	Health=14,
	Attack=2,
	Counter=2,
	Desc="Apply '''1''' {{Stat|Snow}}<br>{{Keyword|Wild}}",
}
cards["Frost Bomber"] = {
	Name="Frost Bomber",
	Types={Boss=true},
	Health=60,
	Attack=5,
	Counter=4,
	Other="{{Stat|Resist Snow}}",
	Desc="{{Keyword|Barrage}}",
}
cards["Frost Crusher"] = {
	Name="Frost Crusher",
	Types={Boss=true},
	Health=90,
	Attack=2,
	Counter=2,
	Desc="Gain '''+2''' {{Stat|Attack}}",
}
cards["Frost Guardian"] = {
	Name="Frost Guardian",
	Types={Boss=true},
	Health=60,
	Attack=0,
	Counter=4,
	Other="{{Stat|Resist Snow}}",
	Desc="When {{Stat|Health}} lost, add equal {{Stat|Attack}} to self and allies",
}
cards["Frost Guardian (Phase 2)"] = {
	Name="Frost Guardian",
	Link="Frost Guardian",
	Health=999,
	Attack=2,
	Counter=2,
	Other="{{Stat|Resist Snow}}",
	Desc="When an ally is killed, lose half {{Stat|Health}} and gain '''+2''' {{Stat|Attack}}",
	UniqueName="Frost Guardian (Phase 2)"
}
cards["Frost Jailer"] = {
	Name="Frost Jailer",
	Types={Boss=true},
	Health=90,
	Attack=5,
	Counter=5,
	Desc="While active, add {{Keyword|Unmovable}} to all enemies",
}
cards["Frost Junker"] = {
	Name="Frost Junker",
	Types={Boss=true},
	Health=30,
	Attack=1,
	Counter=2,
	Desc="When a card is destroyed, gain '''+1''' {{Stat|Attack}}",
}
cards["Frost Lancer"] = {
	Name="Frost Lancer",
	Types={Boss=true},
	Health=60,
	Attack=7,
	Counter=6,
	Other="{{Stat|Resist Snow}}",
	Desc="{{Keyword|Aimless}}",
}
cards["Frost Muncher"] = {
	Name="Frost Muncher",
	Types={Boss=true},
	Health=30,
	Attack=4,
	Counter=6,
	Desc="Destroy the rightmost card in your hand",
}
cards["Infernoko"] = {
	Name="Infernoko",
	Types={Boss=true},
	Health=16,
	Attack=1,
	Counter=4,
	Other="{{Stat|Resist Snow}}",
	Desc="When an ally is killed, gain their {{Stat|Attack}}",
}
cards["Infernoko (Phase 2)"] = {
	Name="Infernoko",
	Link="Infernoko",
	Health=30,
	Attack=2,
	Counter=2,
	Other="{{Stat|Resist Snow}}",
	Desc="Gain '''+1''' {{Stat|Attack}}",
	UniqueName="Infernoko (Phase 2)"
}
cards["Krunker"] = {
	Name="Krunker",
	Types={Boss=true},
	Scrap=8,
	Attack=8,
	Counter=3,
	Desc="{{Keyword|Backline}}<br>{{Keyword|Bombard}}",
}
cards["Krunker (Phase 2)"] = {
	Name="Krunker",
	Link="Krunker",
	Health=50,
	Attack=3,
	Counter=2,
	Other="{{Stat|Resist Snow}}",
	Desc="{{Keyword|Backline}}<br>{{Keyword|Bombard}}",
	UniqueName="Krunker (Phase 2)"
}
cards["Truffle"] = {
	Name="Truffle",
	Types={Boss=true},
	Health=110,
	Attack=4,
	Counter=4,
	Desc="{{Keyword|Split}} when '''10''' {{Stat|Health}} lost",
}


--Cursed Charms
cards["Weakness Charm"] = {
	Name="Weakness Charm",
	Types={},
	Desc="Reduce {{Stat|Attack}} by '''2'''",
	Tier=-3,
}
cards["Bread Charm"] = {
	Name="Bread Charm",
	Types={CursedCharm=true},
	Desc="Gain {{Keyword|Consume}}",
	Tier=-2,
}
cards["Broken Charm"] = {
	Name="Broken Charm",
	Types={CursedCharm=true},
	Desc="'''-1''' {{Stat|Scrap}}",
	Tier=-2,
}
cards["Coldheart Charm"] = {
	Name="Coldheart Charm",
	Types={CursedCharm=true},
	Desc="'''-3''' {{Stat|Health}}",
	Tier=-2,
}
cards["Demon Eye Charm"] = {
	Name="Demon Eye Charm",
	Types={CursedCharm=true},
	Desc="Start with '''1''' {{Stat|Demonize}}",
	Tier=-2,
}
cards["Fish Charm"] = {
	Name="Fish Charm",
	Types={CursedCharm=true},
	Desc="Gain {{Keyword|Aimless}}",
	Tier=-2,
}
cards["Frostbite Charm"] = {
	Name="Frostbite Charm",
	Types={CursedCharm=true},
	Desc="Reduce effects by '''1'''",
	Tier=-2,
}
cards["Frostwolf Charm"] = {
	Name="Frostwolf Charm",
	Types={CursedCharm=true},
	Desc="Start with '''4''' {{Stat|Frost}}",
	Tier=-2,
}
cards["Frozen Sun Charm"] = {
	Name="Frozen Sun Charm",
	Types={CursedCharm=true},
	Desc="Increase {{Stat|Counter}} by '''1'''",
	Tier=-2,
}
cards["Lazy Charm"] = {
	Name="Lazy Charm",
	Types={CursedCharm=true},
	Desc="Reduce {{Stat|Frenzy}} by '''x1'''",
	Tier=-2,
}
cards["Ooba Charm"] = {
	Name="Ooba Charm",
	Types={CursedCharm=true},
	Desc="Start with '''3''' {{Stat|Snow}}",
	Tier=-2,
}
cards["Squidskull Charm"] = {
	Name="Squidskull Charm",
	Types={CursedCharm=true},
	Desc="Start with '''4''' {{Stat|Ink}}",
	Tier=-2,
}
cards["Trash Charm"] = {
	Name="Trash Charm",
	Types={CursedCharm=true},
	Desc="Gain {{Keyword|Trash}} '''1'''",
	Tier=-2,
}
cards["Weakness Charm"] = {
	Name="Weakness Charm",
	Types={CursedCharm=true},
	Desc="'''-1''' {{Stat|Attack}}",
	Tier=-2,
}


--Charms
cards["Gear Charm"] = {
	Name="Gear Charm",
	Types={Charm=true},
	Desc="Gain {{Keyword|Trash}} '''1''' and {{Keyword|Draw}} '''1'''",
	Tier=0,
	Tribes={"Clunkmasters"},
	Challenge="''Unlocked by default''",
	Price=45,
}
cards["Hook Charm"] = {
	Name="Hook Charm",
	Types={Charm=true},
	Desc="Gain {{Keyword|Yank}}",
	Tier=0,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=45,
}
cards["Pengu Charm"] = {
	Name="Pengu Charm",
	Types={Charm=true},
	Desc="When {{Stat|Snow}}'d, gain equal {{Stat|Attack}}",
	Tier=0,
	Tribes={"All"},
	Unlock="Snowball Fight",
	Challenge="Stack '''15''' {{Stat|Snow}} on a single target",
	Price=45,
}
cards["Bling Charm"] = {
	Name="Bling Charm",
	Types={Charm=true},
	Desc="Gain '''5''' {{Bling}} from each kill",
	Tier=1,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=55,
}
cards["Frog Charm"] = {
	Name="Frog Charm",
	Types={Charm=true},
	Desc="Gain {{Keyword|Fury}} '''4'''",
	Tier=1,
	Tribes={"All"},
	Unlock="Lone Survivor",
	Challenge="Win a battle with just your [[Leaders|Leader]] remaining",
	Price=55,
}
cards["Frosthand Charm"] = {
	Name="Frosthand Charm",
	Types={Charm=true},
	Desc="Apply '''1''' {{Stat|Frost}}",
	Tier=1,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=55,
}
cards["Raspberry Charm"] = {
	Name="Raspberry Charm",
	Types={Charm=true},
	Desc="'''+1''' {{Stat|Attack}}<br>'''+3''' {{Stat|Health}}",
	Tier=1,
	Tribes={"All"},
	Unlock="Balloonist",
	Challenge="Win a [[Daily Voyage]]",
	Price=55,
}
cards["Recycle Charm"] = {
	Name="Recycle Charm",
	Types={Charm=true},
	Desc="Gain {{Keyword|Recycle}} '''1'''<br>'''+4''' {{Stat|Attack}}",
	Tier=1,
	Tribes={"Clunkmasters"},
	Challenge="''Unlocked by default''",
	Price=55,
}
cards["Scrap Charm"] = {
	Name="Scrap Charm",
	Types={Charm=true},
	Desc="Add '''1''' {{Stat|Scrap}}",
	Tier=1,
	Tribes={"Snowdwellers", "Clunkmasters"},
	Challenge="''Unlocked by default''",
	Price=55,
}
cards["Shroom Charm"] = {
	Name="Shroom Charm",
	Types={Charm=true},
	Desc="Apply '''1''' {{Stat|Shroom}}",
	Tier=1,
	Tribes={"Snowdwellers"},
	Challenge="''Unlocked by default''",
	Price=55,
}
cards["Acorn Charm"] = {
	Name="Acorn Charm",
	Types={Charm=true},
	Desc="Gain '''8''' {{Stat|Shell}}",
	Tier=2,
	Tribes={"Snowdwellers"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Balance Charm"] = {
	Name="Balance Charm",
	Types={Charm=true},
	Desc="Set {{Stat|Health}}, {{Stat|Attack}} and {{Stat|Counter}} to '''3'''",
	Tier=2,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Battle Charm"] = {
	Name="Battle Charm",
	Types={Charm=true},
	Desc="'''+2''' {{Stat|Attack}}",
	Tier=2,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Beetle Charm"] = {
	Name="Beetle Charm",
	Types={Charm=true},
	Desc="'''+1''' {{Stat|Attack}}<br>Does not take up a charm slot",
	Tier=2,
	Tribes={"All"},
	Unlock="Rampage",
	Challenge="Stack '''x10''' {{Stat|Frenzy}} on a single target",
	Price=65,
}
cards["Bite Charm"] = {
	Name="Bite Charm",
	Types={Charm=true},
	Desc="Start with '''3''' {{Stat|Teeth}}",
	Tier=2,
	Tribes={"Shademancers"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Block Charm"] = {
	Name="Block Charm",
	Types={Charm=true},
	Desc="Start with '''1''' {{Stat|Block}}",
	Tier=2,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Bom Charm"] = {
	Name="Bom Charm",
	Types={Charm=true},
	Desc="Apply '''1''' {{Stat|Bom}}",
	Tier=2,
	Tribes={"Clunkmasters"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Bombskull Charm"] = {
	Name="Bombskull Charm",
	Types={Charm=true},
	Desc="When destroyed, deal '''8''' damage to enemies in the row",
	Tier=2,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Boonfire Charm"] = {
	Name="Boonfire Charm",
	Types={Charm=true},
	Desc="When consumed, apply '''2''' {{Stat|Overburn}} to all enemies",
	Tier=2,
	Tribes={"Shademancers"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Cake Charm"] = {
	Name="Cake Charm",
	Types={Charm=true},
	Desc="Boost effects by '''4''' and gain {{Keyword|Consume}}",
	Tier=2,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Chuckle Charm"] = {
	Name="Chuckle Charm",
	Types={Charm=true},
	Desc="Remove Charm limit",
	Tier=2,
	Tribes={"All"},
	Unlock="Gnome Friend",
	Challenge="Spare the [[Naked Gnome]]",
	Price=65,
}
cards["Cloudberry Charm"] = {
	Name="Cloudberry Charm",
	Types={Charm=true},
	Desc="Restore '''3''' {{Stat|Health}} on kill",
	Tier=2,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Critical Charm"] = {
	Name="Critical Charm",
	Types={Charm=true},
	Desc="Gain {{Keyword|Critical}}",
	Tier=2,
	Tribes={"All"},
	Unlock="Undefeated",
	Challenge="Achieve a '''3''' Win Streak",
	Price=65,
}
cards["Durian Charm"] = {
	Name="Durian Charm",
	Types={Charm=true},
	Desc="'''+4''' {{Stat|Attack}}<br>Remove all effects",
	Tier=2,
	Tribes={"All"},
	Unlock="Bigger Hitter",
	Challenge="Deal '''100''' damage in a single hit",
	Price=65,
}
cards["Fidget Charm"] = {
	Name="Fidget Charm",
	Types={Charm=true},
	Desc="Replace {{Keyword|Recycle}} effects with {{Keyword|Trash}} and vice versa",
	Tier=2,
	Tribes={"Clunkmasters"},
	Unlock="Clunkmaster",
	Challenge="Win a run with the [[Tribes#Clunkmasters|Clunkmaster tribe]]",
	Price=65,
}
cards["Flameblade Charm"] = {
	Name="Flameblade Charm",
	Types={Charm=true},
	Desc="Replace current {{Stat|Attack}} with apply {{Stat|Overburn}}",
	Tier=2,
	Tribes={"Shademancers"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Frenzy Charm"] = {
	Name="Frenzy Charm",
	Types={Charm=true},
	Desc="Add '''x2''' {{Stat|Frenzy}} and gain {{Keyword|Consume}}",
	Tier=2,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Frozen Heart Charm"] = {
	Name="Frozen Heart Charm",
	Types={Charm=true},
	Desc="Start with '''2''' {{Stat|Block}}<br>Reduce {{Stat|Health}} to '''1'''",
	Tier=2,
	Tribes={"All"},
	Unlock="Icemaster",
	Challenge="Stack '''5''' {{Stat|Block}} on a single target",
	Price=65,
}
cards["Gnome Charm"] = {
	Name="Gnome Charm",
	Types={Charm=true},
	Desc="Add '''x1''' {{Stat|Frenzy}} and gain {{Keyword|Aimless}}",
	Tier=2,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Goat Charm"] = {
	Name="Goat Charm",
	Types={Charm=true},
	Desc="Apply '''1''' {{Stat|Demonize}}",
	Tier=2,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Greed Charm"] = {
	Name="Greed Charm",
	Types={Charm=true},
	Desc="Gain {{Keyword|Greed}}",
	Tier=2,
	Tribes={"All"},
	Unlock="High Roller",
	Challenge="Buy '''3''' [[Charms]] from a single [[The Woolly Snail|Shop]]<br><i>Note: Also possible via [[Charm Merchant]]</i>",
	Price=65,
}
cards["Heart Charm"] = {
	Name="Heart Charm",
	Types={Charm=true},
	Desc="'''+5''' {{Stat|Health}}",
	Tier=2,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Hog Charm"] = {
	Name="Hog Charm",
	Types={Charm=true},
	Desc="Gain {{Keyword|Hogheaded}}<br>'''+7''' {{Stat|Health}}",
	Tier=2,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Jewelberry Charm"] = {
	Name="Jewelberry Charm",
	Types={Charm=true},
	Desc="Gain {{Keyword|Flourish}}",
	Tier=2,
	Tribes={"Snowdwellers"},
	Unlock="Snowdweller",
	Challenge="Win a run with the [[Tribes#Snowdwellers|Snowdweller tribe]]",
	Price=65,
}
cards["Jimbo Charm"] = {
	Name="Jimbo Charm",
	Types={Charm=true},
	Desc="{{Stat|Health}}, {{Stat|Attack}}, {{Stat|Counter}} are randomized between '''2''' and '''5'''",
	Tier=2,
	Tribes={"All"},
	Unlock="Gnomebringer",
	Challenge="Win a run with the [[Naked Gnome]] on your team",
	Price=65,
}
cards["Lamb Charm"] = {
	Name="Lamb Charm",
	Types={Charm=true},
	Desc="Gain {{Keyword|Faith}} '''2'''",
	Tier=2,
	Tribes={"Shademancers"},
	Unlock="Ritual",
	Challenge="Sacrifice '''5''' allies in a single battle",
	Price=65,
}
cards["Lumin Ring"] = {
	Name="Lumin Ring",
	Types={Charm=true},
	Desc="Boost effects by '''1'''",
	Tier=2,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Mime Charm"] = {
	Name="Mime Charm",
	Types={Charm=true},
	Desc="Replace effects with those of a random [[Companions|Companion]] in your deck or reserve",
	Tier=2,
	Tribes={"Shademancers"},
	Unlock="Shademancer",
	Challenge="Win a run with the [[Tribes#Shademancers|Shademancer tribe]]",
	Price=65,
}
cards["Moko Charm"] = {
	Name="Moko Charm",
	Types={Charm=true},
	Desc="Add '''x1''' {{Stat|Frenzy}}<br>'''-1''' {{Stat|Attack}}<br>'''-1''' {{Stat|Health}}",
	Tier=2,
	Tribes={"All"},
	Unlock="Long Live the King",
	Challenge="Survive an attack from [[King Moko]] and win the battle",
	Price=65,
}
cards["Molten Egg Charm"] = {
	Name="Molten Egg Charm",
	Types={Charm=true},
	Desc="Gain {{Keyword|Consume}}<br>'''+5''' {{Stat|Attack}}",
	Tier=2,
	Tribes={"All"},
	Unlock="One Punch",
	Challenge="Defeat the [[Frost Guardian]] with a [[Scrappy Sword]]",
	Price=65,
}
cards["Moose Charm"] = {
	Name="Moose Charm",
	Types={Charm=true},
	Desc="Increase {{Stat|Counter}} by '''1'''<br>'''+3''' {{Stat|Attack}}",
	Tier=2,
	Tribes={"All"},
	Unlock="Big Hitter",
	Challenge="Deal '''50''' damage in a single hit",
	Price=65,
}
cards["Muncher Charm"] = {
	Name="Muncher Charm",
	Types={Charm=true},
	Desc="Permanently destroy the card when this is equipped",
	Tier=2,
	Tribes={"All"},
	Unlock="Minimalist",
	Challenge="Win a battle without any cards left in your deck",
	Price=65,
}
cards["Noomlin Charm"] = {
	Name="Noomlin Charm",
	Types={Charm=true},
	Desc="Gain {{Keyword|Noomlin}}",
	Tier=2,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Nourish Charm"] = {
	Name="Nourish Charm",
	Types={Charm=true},
	Desc="When hit, restore {{Stat|Health}} by '''1'''",
	Tier=2,
	Tribes={"All"},
	Unlock="Berry Good",
	Challenge="Have '''30''' or more {{Stat|Health}} on a single unit",
	Price=65,
}
cards["Peppernut Charm"] = {
	Name="Peppernut Charm",
	Types={Charm=true},
	Desc="Replace {{Stat|Shell}} effects with {{Stat|Spice}} and vice versa",
	Tier=2,
	Tribes={"Snowdwellers"},
	Unlock="Tough Nut",
	Challenge="Stack '''50''' {{Stat|Shell}} on a single target",
	Price=65,
}
cards["Pinch Charm"] = {
	Name="Pinch Charm",
	Types={Charm=true},
	Desc="Gain {{Keyword|Draw}} '''2''' on kill",
	Tier=2,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Pomegranate Charm"] = {
	Name="Pomegranate Charm",
	Types={Charm=true},
	Desc="Gain {{Keyword|Barrage}} and reduce {{Stat|Attack}} by '''2'''",
	Tier=2,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Punchfist Charm"] = {
	Name="Punchfist Charm",
	Types={Charm=true},
	Desc="Gain {{Keyword|Smackback}}",
	Tier=2,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Scorchberry Charm"] = {
	Name="Scorchberry Charm",
	Types={Charm=true},
	Desc="Reduce {{Stat|Health}} by half<br>Increase {{Stat|Attack}} equal to {{Stat|Health}}",
	Tier=2,
	Tribes={"All"},
	Unlock="Best Friends",
	Challenge="Win a run with your [[Companions#Pets|pet]] as your only active [[Companions|Companion]]",
	Price=65,
}
cards["Shade Slug"] = {
	Name="Shade Slug",
	Types={Charm=true},
	Desc="Apply the same effect as the last '''Charm''' applied to the card",
	Tier=2,
	Tribes={"All"},
	Unlock="Charmless",
	Challenge="Win a run without any [[Charms]] equipped",
	Price=65,
}
cards["Shield Charm"] = {
	Name="Shield Charm",
	Types={Charm=true},
	Desc="Gain '''3''' {{Stat|Shell}} on kill",
	Tier=2,
	Tribes={"Snowdwellers"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Snowball Charm"] = {
	Name="Snowball Charm",
	Types={Charm=true},
	Desc="Apply '''1''' {{Stat|Snow}}",
	Tier=2,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Spark Charm"] = {
	Name="Spark Charm",
	Types={Charm=true},
	Desc="Gain {{Keyword|Spark}}",
	Tier=2,
	Tribes={"All"},
	Unlock="Sunbringer",
	Challenge="Defeat the [[Heart of the Storm]]",
	Price=65,
}
cards["Spice Charm"] = {
	Name="Spice Charm",
	Types={Charm=true},
	Desc="Gain '''2''' {{Stat|Spice}} when hit",
	Tier=2,
	Tribes={"Snowdwellers"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Squid Charm"] = {
	Name="Squid Charm",
	Types={Charm=true},
	Desc="Apply '''2''' {{Stat|Ink}}",
	Tier=2,
	Tribes={"Clunkmasters"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Strawberry Charm"] = {
	Name="Strawberry Charm",
	Types={Charm=true},
	Desc="When consumed, add '''+2''' {{Stat|Health}} to all allies",
	Tier=2,
	Tribes={"All"},
	Unlock="Feed the Beast",
	Challenge="Feed the [[Muncher]] a {{Keyword|Consume}} item",
	Price=65,
}
cards["Sun Charm"] = {
	Name="Sun Charm",
	Types={Charm=true},
	Desc="Reduce {{Stat|Counter}} by 1",
	Tier=2,
	Tribes={"All"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Sunglass Charm"] = {
	Name="Sunglass Charm",
	Types={Charm=true},
	Desc="Reduce {{Stat|Counter}} by half<br>Set {{Stat|Health}} to '''1'''<br>Gain {{Keyword|Fragile}}",
	Tier=2,
	Tribes={"All"},
	Unlock="Beastmaster",
	Challenge="Defeat a [[Enemies#Bosses|Boss]] without applying {{Stat|Snow}} to them",
	Price=65,
}
cards["Tiger Charm"] = {
	Name="Tiger Charm",
	Types={Charm=true},
	Desc="Gain '''1''' {{Stat|Teeth}} when hit",
	Tier=2,
	Tribes={"Shademancers"},
	Challenge="''Unlocked by default''",
	Price=65,
}
cards["Truffle Charm"] = {
	Name="Truffle Charm",
	Types={Charm=true},
	Desc="Apply '''3''' {{Stat|Shroom}}<br>'''-2''' {{Stat|Health}}",
	Tier=2,
	Tribes={"Snowdwellers"},
	Unlock="Toxic",
	Challenge="Stack '''20''' {{Stat|Shroom}} on a single target",
	Price=65,
}
cards["Zoomlin Charm"] = {
	Name="Zoomlin Charm",
	Types={Charm=true},
	Desc="Gain {{Keyword|Zoomlin}} and {{Keyword|Consume}}",
	Tier=2,
	Tribes={"All"},
	Unlock="Hoarder",
	Challenge="Have '''12''' or more cards in your hand at once",
	Price=65,
}

p.cards = cards

return p