Module:Cards/data: Difference between revisions

From Wildfrost Wiki
Jump to navigation Jump to search
mNo edit summary
(Earth Berry desc changed)
Line 1,520: Line 1,520:
Attack=0,
Attack=0,
Counter=3,
Counter=3,
Desc="Deal damage equal to {{Stat|Health}}",
Desc="Deal additional damage equal to {{Stat|Health}}",
}
}
cards["Frostinger"] = {
cards["Frostinger"] = {

Revision as of 22:24, 10 May 2024

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["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=5,
}
cards["Loki"] = {
	Name="Loki",
	Types={Pet=true, Companion=true},
	Health=5,
	Attack=2,
	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=8,
	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, HotSpring=true, NonPetCompanion=true},
	Health=12,
	Attack=6,
	Counter=5,
	Other="1 {{Stat|Bom}}",
	Desc="Apply '''1''' {{Stat|Scrap}} to a random ally",
	Tribes={"Clunkmasters"},
	Challenge="Add 10 {{Keyword|Scrap}} to Clunkers",
	ChallengeOrder=5,
}
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=15,
	Attack=7,
	Counter=4,
	Desc="Deal '''5''' damage to self and allies in the row<br>{{Keyword|Barrage}}",
	Tribes={"All"},
	Challenge="Use {{Keyword|Smackback}} to kill 20 enemies",
	ChallengeOrder=3,
}
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="3 {{Stat|Shell}}",
	Desc="Deal additional damage equal to {{Stat|Shell}}",
	Tribes={"Snowdwellers"},
}
cards["Devicro"] = {
	Name="Devicro",
	Types={Companion=true, NonPetCompanion=true},
	Health=6,
	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=0,
	Counter=3,
	Desc="Apply '''1''' {{Stat|Demonize}}",
	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["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["Groff"] = {
	Name="Groff",
	Types={Companion=true, NonPetCompanion=true},
	Health=5,
	Attack=5,
	Other="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, HotSpring=true, NonPetCompanion=true},
	Health=13,
	Attack=1,
	Counter=3,
	Desc="Also hits ally behind<br>{{Keyword|Barrage}}",
	Tribes={"All"},
	Challenge="Deal 10 damage to your own team",
	ChallengeOrder=1,
}
cards["Kernel"] = {
	Name="Kernel",
	Types={Companion=true, NonPetCompanion=true},
	Health=8,
	Attack=3,
	Counter=4,
	Desc="When hit, apply '''3''' {{Stat|Shell}} to ally behind",
	Tribes={"Snowdwellers"},
}
cards["Kreggo"] = {
	Name="Kreggo",
	Types={Companion=true, NonPetCompanion=true},
	Health=7,
	Attack=0,
	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"},
}
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"},
}
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["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=8,
	Counter=5,
	Desc="Apply '''6''' {{Stat|Spice}} to ally ahead",
	Tribes={"Snowdwellers"},
}
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 '''1''' {{Stat|Overburn}}<br>Increase by 1 when hit",
	Tribes={"Shademancers"},
}
cards["Snobble"] = {
	Name="Snobble",
	Types={Companion=true, HotSpring=true, NonPetCompanion=true},
	Health=5,
	Attack=2,
	Counter=4,
	Desc="Apply {{Stat|Snow}} equal to damage dealt",
	Tribes={"All"},
	Challenge="Equip 10 [[Charms]]",
	ChallengeOrder=0,
}
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["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=2,
	Counter=3,
	Desc="While active, add {{Stat|Attack}} to all [[Junk]] in your hand",
	Tribes={"Clunkmasters"},
}
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="Achieve a 4x kill combo",
	ChallengeOrder=2,
}
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, HotSpring=true, NonPetCompanion=true},
	Health=4,
	Counter=4,
	Desc="Add '''+2''' {{Stat|Attack}} and '''+2''' {{Stat|Health}} to all {{Keyword|Summoned}} allies",
	Tribes={"Shademancers"},
	Challenge="Summon 50 Allies",
	ChallengeOrder=4,
}
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"},
}

--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,
	Desc="When an enemy is killed, gain '''4''' {{Bling}}",
	Tribes={"All"},
}
cards["Blundertank"] = {
	Name="Blundertank",
	Types={Clunker=true},
	Scrap=2,
	Attack=5,
	Desc="<span style=\"color:brown\">Trigger when [[Junk]] is destroyed</span>",
	Tribes={"Clunkmasters"},
}
cards["Bombarder"] = {
	Name="Bombarder",
	Types={Clunker=true},
	Scrap=1,
	Attack=0,
	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"},
}
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,
	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,
	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,
	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="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"},
}

--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["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|Aimless}}<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,
}
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["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["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 '''1''' {{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,
}

--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|Sacrificing}} [[Chikashi]]",
}
cards["Chikani"] = {
	Name="Chikani",
	Types={Shade=true},
	Health=4,
	Attack=4,
	Counter=3,
	Desc="When {{Keyword|Sacrificed}}, summon [[Chikasan]]",
	SummonCon="{{Keyword|Sacrificing}} [[Chikichi]]",
}
cards["Chikasan"] = {
	Name="Chikasan",
	Types={Shade=true},
	Health=6,
	Attack=6,
	Counter=3,
	Desc="When {{Keyword|Sacrificed}}, summon [[Chikashi]]",
	SummonCon="{{Keyword|Sacrificing}} [[Chikani]]",
}
cards["Chikashi"] = {
	Name="Chikashi",
	Types={Shade=true},
	Health=8,
	Attack=8,
	Counter=3,
	Desc="When {{Keyword|Sacrificed}}, summon [[Chikagoru]]",
	SummonCon="{{Keyword|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]]",
}
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["Tigris"] = {
	Name="Tigris",
	Types={Shade=true},
	Health=4,
	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,
}
cards["Berry Witch"] = {
	Name="Berry Witch",
	Types={Enemy=true},
	Health=6,
	Attack=2,
	Counter=4,
	Desc="Restore '''2''' {{Stat|Health}} to all allies",
}
cards["Bigfoot"] = {
	Name="Bigfoot",
	Types={Enemy=true},
	Health=12,
	Attack=5,
	Counter=4,
	Desc="{{Keyword|Barrage}}",
}
cards["Bulbhead"] = {
	Name="Bulbhead",
	Types={Enemy=true},
	Health=8,
	Attack=0,
	Counter=5,
	Desc="Apply '''2''' {{Stat|Shroom}}<br>{{Keyword|Barrage}}",
}
cards["Burster"] = {
	Name="Burster",
	Types={Enemy=true},
	Health=10,
	Attack=1,
	Counter=4,
	Other="{{Stat|Resist Snow}}",
	Desc="Apply '''1''' {{Stat|Haze}}",
}
cards["Chungoon"] = {
	Name="Chungoon",
	Types={Enemy=true},
	Health=6,
	Attack=1,
	Counter=3,
	Desc="When hit, gain '''+1''' {{Stat|Attack}}",
}
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}}",
}
cards["Earth Berry"] = {
	Name="Earth Berry",
	Types={Enemy=true},
	Health=6,
	Attack=0,
	Counter=3,
	Desc="Deal additional damage equal to {{Stat|Health}}",
}
cards["Frostinger"] = {
	Name="Frostinger",
	Types={Enemy=true},
	Health=8,
	Attack=1,
	Counter=3,
	Desc="Apply '''1''' {{Stat|Frost}}",
}
cards["Gobbler"] = {
	Name="Gobbler",
	Types={Enemy=true},
	Health=7,
	Attack=1,
	Counter=3,
	Desc="When an ally is killed, gain their {{Stat|Attack}}",
}
cards["Gobling"] = {
	Name="Gobling",
	Types={Enemy=true},
	Health=6,
	Counter=4,
	Desc="Escape from the battle<br>Drop '''4''' {{Bling}} when hit",
}
cards["Gogong"] = {
	Name="Gogong",
	Types={Enemy=true},
	Health=5,
	Attack=2,
	Desc="{{Keyword|Smackback}}",
}
cards["Gok"] = {
	Name="Gok",
	Types={Enemy=true},
	Health=18,
	Attack=5,
	Counter=5,
	Desc="When hit, apply '''1''' {{Stat|Demonize}} to the attacker",
}
cards["Grink"] = {
	Name="Grink",
	Types={Enemy=true},
	Health=8,
	Attack=1,
	Counter=2,
	Desc="Apply '''2''' {{Stat|Frost}}",
}
cards["Grizzle"] = {
	Name="Grizzle",
	Types={Enemy=true},
	Health=16,
	Attack=4,
	Counter=5,
	Other="{{Stat|Resist Snow}}",
	Desc="Apply '''3''' {{Stat|Snow}}",
}
cards["Grog"] = {
	Name="Grog",
	Types={Enemy=true},
	Health=12,
	Attack=6,
	Counter=8,
	Desc="When hit, count down {{Stat|Counter}} by '''1'''",
}
cards["Gromble"] = {
	Name="Gromble",
	Types={Enemy=true},
	Health=12,
	Attack=2,
	Counter=2,
}
cards["Grouchy"] = {
	Name="Grouchy",
	Types={Enemy=true},
	Health=5,
	Attack=2,
	Counter=4,
	Desc=" While damaged, {{Stat|Attack}} is increased by '''2'''",
}
cards["Grumps"] = {
	Name="Grumps",
	Types={Enemy=true},
	Health=9,
	Attack=10,
	Counter=8,
	Desc="When hit, reduce the attacker's {{Stat|Attack}} by '''1'''",
}
cards["Hog"] = {
	Name="Hog",
	Types={Enemy=true},
	Health=1,
	Attack=1,
	Counter=2,
	Desc="{{Keyword|Wild}}",
}
cards["Jab Joat"] = {
	Name="Jab Joat",
	Types={Enemy=true},
	Health=10,
	Attack=1,
	Counter=3,
	Other="x2 {{stat|Frenzy}}",
}
cards["Krab"] = {
	Name="Krab",
	Types={Enemy=true},
	Health=5,
	Attack=8,
	Counter=5,
	Other="3 {{Stat|Block}}",
}
cards["Krawler"] = {
	Name="Krawler",
	Types={Enemy=true},
	Health=10,
	Attack=4,
	Counter=3,
	Desc="When hit, apply '''2''' {{Stat|Block}} to a random ally",
}
cards["Makoko"] = {
	Name="Makoko",
	Types={Enemy=true},
	Health=8,
	Attack=0,
	Counter=1,
	Desc="Gain '''+1''' {{Stat|Attack}}",
}
cards["Marrow"] = {
	Name="Marrow",
	Types={Enemy=true},
	Health=14,
	Attack=2,
	Counter=4,
	Desc="While active, add '''2''' {{Stat|Teeth}} to all allies",
}
cards["Minimoko"] = {
	Name="Minimoko",
	Types={Enemy=true},
	Health=6,
	Attack=1,
	Counter=2,
	Desc="Gain '''+1''' {{Stat|Attack}}",
}
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>",
}
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",
}
cards["Paw Paw"] = {
	Name="Paw Paw",
	Types={Enemy=true},
	Health=10,
	Attack=1,
	Counter=3,
	Desc="When hit, gain '''2''' {{Stat|Teeth}}",
}
cards["Pecan"] = {
	Name="Pecan",
	Types={Enemy=true},
	Health=2,
	Attack=4,
	Counter=4,
	Other="6 {{stat|Shell}}",
	Desc="Gain '''2''' {{Stat|Shell}}",
}
cards["Pengoon"] = {
	Name="Pengoon",
	Types={Enemy=true},
	Health=2,
	Attack=1,
	Counter=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",
}
cards["Plum"] = {
	Name="Plum",
	Types={Enemy=true},
	Health=15,
	Attack=2,
	Counter=3,
	Desc="Restore '''4''' {{Stat|Health}} to all allies",
}
cards["Popshroom"] = {
	Name="Popshroom",
	Types={Enemy=true},
	Health=6,
	Attack=0,
	Counter=4,
	Desc="Apply '''4''' {{Stat|Shroom}}<br>Destroy self",
}
cards["Porkypine"] = {
	Name="Porkypine",
	Types={Enemy=true},
	Health=6,
	Attack=2,
	Counter=4,
	Desc="{{Keyword|Barrage}}",
}
cards["Prickle"] = {
	Name="Prickle",
	Types={Enemy=true},
	Health=5,
	Counter=3,
	Other="2 {{Stat|Teeth}}",
	Desc="Gain '''2''' {{Stat|Teeth}}",
}
cards["Puffball"] = {
	Name="Puffball",
	Types={Enemy=true},
	Health=2,
	Attack=0,
	Desc="Apply '''2''' {{Stat|Shroom}}<br>Trigger against the target when an ally attacks",
}
cards["Pygmy"] = {
	Name="Pygmy",
	Types={Enemy=true},
	Health=5,
	Attack=0,
	Counter=2,
	Desc="Apply '''1''' {{Stat|Demonize}}<br>{{Keyword|Barrage}}",
}
cards["Rockhog"] = {
	Name="Rockhog",
	Types={Enemy=true},
	Health=7,
	Attack=4,
	Counter=6,
	Desc="While active, add '''x1''' {{Stat|Frenzy}} to all allies",
}
cards["Shell Witch"] = {
	Name="Shell Witch",
	Types={Enemy=true},
	Health=6,
	Attack=2,
	Counter=3,
	Desc="Apply '''2''' {{Stat|Shell}} to all allies",
}
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}}",
}
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}}",
}
cards["Smog"] = {
	Name="Smog",
	Types={Enemy=true},
	Health=10,
	Attack=5,
	Counter=6,
	Desc="While active, add {{Keyword|Aimless}} to all enemies",
}
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}}",
}
cards["Snowbirb"] = {
	Name="Snowbirb",
	Types={Enemy=true},
	Health=4,
	Attack=1,
	Counter=3,
	Desc="Apply '''4''' {{Stat|Snow}}<br>{{Keyword|Longshot}}",
}
cards["Snowbo"] = {
	Name="Snowbo",
	Types={Enemy=true},
	Health=4,
	Attack=1,
	Counter=2,
	Desc="{{Keyword|Aimless}}",
}
cards["Spuncher"] = {
	Name="Spuncher",
	Types={Enemy=true},
	Health=15,
	Attack=3,
	Counter=3,
}
cards["Tentickle"] = {
	Name="Tentickle",
	Types={Enemy=true},
	Health=8,
	Attack=5,
	Counter=5,
	Desc="When hit, apply '''3''' {{Stat|Ink}} to the attacker",
}
cards["Waddlegoons"] = {
	Name="Waddlegoons",
	Types={Enemy=true},
	Health=9,
	Attack=1,
	Counter=3,
	Other="x3 {{Stat|Frenzy}}",
}
cards["Warthog"] = {
	Name="Warthog",
	Types={Enemy=true},
	Health=18,
	Attack=5,
	Counter=5,
	Desc="{{Keyword|Wild}}<br>{{Keyword|Smackback}}",
}
cards["Wild Snoolf"] = {
	Name="Wild Snoolf",
	Types={Enemy=true},
	Health=4,
	Attack=1,
	Counter=3,
	Desc="Apply '''2''' {{Stat|Snow}}",
}
cards["Willow"] = {
	Name="Willow",
	Types={Enemy=true},
	Health=16,
	Attack=0,
	Counter=5,
	Desc="Apply '''5''' {{Stat|Overburn}}",
}
cards["Winter Worm"] = {
	Name="Winter Worm",
	Types={Enemy=true},
	Health=10,
	Attack=8,
	Counter=6,
	Desc="When hit, reduce {{Stat|Attack}} by '''1'''",
}
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",
}

--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",
}
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["Spike Wall"] = {
	Name="Spike Wall",
	Types={EnemyClunker=true},
	Scrap=3,
	Attack=3,
	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["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["Maw Jaw"] = {
	Name="Maw Jaw",
	Types={Miniboss=true},
	Health=30,
	Attack=5,
	Counter=4,
	Desc="Trigger when hit",
}
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["Numskull"] = {
	Name="Numskull",
	Types={Miniboss=true},
	Health=20,
	Attack=6,
	Counter=4,
	Other="12 {{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}}",
}

--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}}",
}
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}}",
}
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}}",
}
cards["Truffle"] = {
	Name="Truffle",
	Types={Boss=true},
	Health=110,
	Attack=4,
	Counter=4,
	Desc="{{Keyword|Split}} when '''10''' {{Stat|Health}} lost",
}


p.cards = cards

return p