Module:Cards/data: Difference between revisions

From Wildfrost Wiki
Jump to navigation Jump to search
m (Undo revision 3832 by Fernicus (talk))
Tag: Undo
(added commented code for lua<->python conversion for future maintenence)
Line 18: Line 18:
\|(?:style=".*"\|)?(.*)
\|(?: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
--Pets
cards["Booshu"] = {
cards["Booshu"] = {
Name = "Booshu",
Name="Booshu",
Types={Pet=true, Companion=true},
Types={Pet=true, Companion=true},
Health=4,
Health=4,
Line 28: Line 87:
Desc="Restore '''3''' {{Stat|Health}} to all allies",
Desc="Restore '''3''' {{Stat|Health}} to all allies",
Challenge="Recall '''3''' Companions",
Challenge="Recall '''3''' Companions",
ChallengeOrder=1
ChallengeOrder=1,
}
}
cards["Lil Gazi"] = {
cards["Lil Gazi"] = {
Name = "Lil' Gazi",
Name="Lil' Gazi",
Types={Pet=true, Companion=true},
Types={Pet=true, Companion=true},
Health=3,
Health=3,
Line 38: Line 97:
Desc="While active, add '''+1''' {{Stat|Attack}} to all allies",
Desc="While active, add '''+1''' {{Stat|Attack}} to all allies",
Challenge="Achieve a '''6x''' kill combo",
Challenge="Achieve a '''6x''' kill combo",
ChallengeOrder=5
ChallengeOrder=5,
}
}
cards["Loki"] = {
cards["Loki"] = {
Name = "Loki",
Name="Loki",
Types={Pet=true, Companion=true},
Types={Pet=true, Companion=true},
Health=5,
Health=5,
Line 48: Line 107:
Desc="Apply '''1''' {{Stat|Demonize}}<br>{{Keyword|Aimless}}",
Desc="Apply '''1''' {{Stat|Demonize}}<br>{{Keyword|Aimless}}",
Challenge="Kill '''3''' {{Stat|Demonize|Demonized}} enemies",
Challenge="Kill '''3''' {{Stat|Demonize|Demonized}} enemies",
ChallengeOrder=2
ChallengeOrder=2,
}
}
cards["Sneezle"] = {
cards["Sneezle"] = {
Name = "Sneezle",
Name="Sneezle",
Types={Pet=true, Companion=true},
Types={Pet=true, Companion=true},
Health=6,
Health=6,
Line 58: Line 117:
Desc="{{Keyword|Draw}} '''1''' when hit",
Desc="{{Keyword|Draw}} '''1''' when hit",
Challenge="Buy '''5''' discounted [[Items]]",
Challenge="Buy '''5''' discounted [[Items]]",
ChallengeOrder=3
ChallengeOrder=3,
}
}
cards["Snoof"] = {
cards["Snoof"] = {
Name = "Snoof",
Name="Snoof",
Types={Pet=true, Companion=true},
Types={Pet=true, Companion=true},
Health=3,
Health=3,
Line 68: Line 127:
Desc="Apply '''1''' {{Stat|Snow}}",
Desc="Apply '''1''' {{Stat|Snow}}",
Challenge="''Unlocked by default.''",
Challenge="''Unlocked by default.''",
ChallengeOrder=0
ChallengeOrder=0,
}
}
cards["Spike"] = {
cards["Spike"] = {
Name = "Spike",
Name="Spike",
Types={Pet=true, Companion=true},
Types={Pet=true, Companion=true},
Health=8,
Health=8,
Line 77: Line 136:
Desc="{{Keyword|Hogheaded}}",
Desc="{{Keyword|Hogheaded}}",
Challenge="Kill '''10''' enemies with {{Stat|Teeth}}",
Challenge="Kill '''10''' enemies with {{Stat|Teeth}}",
ChallengeOrder=4
ChallengeOrder=4,
}
}


--Frozen Travelers
--Frozen Travellers
cards["Alloy"] = {
cards["Alloy"] = {
Name = "Alloy",
Name="Alloy",
Types={NonPetCompanion=true, Companion=true, HotSpring=true},
Types={Companion=true, HotSpring=true, NonPetCompanion=true},
Health=12,
Health=12,
Attack=6,
Attack=6,
Line 91: Line 150:
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Challenge="Add 10 {{Keyword|Scrap}} to Clunkers",
Challenge="Add 10 {{Keyword|Scrap}} to Clunkers",
ChallengeOrder=5
ChallengeOrder=5,
}
}
cards["Berry Sis"] = {
cards["Berry Sis"] = {
Name = "Berry Sis",
Name="Berry Sis",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=8,
Health=8,
Attack=2,
Attack=2,
Counter=3,
Counter=3,
Desc="When hit, add lost {{Stat|Health}} to a random ally",
Desc="When hit, add lost {{Stat|Health}} to a random ally",
Tribes={"Shademancers"}
Tribes={"Shademancers"},
}
}
cards["Big Berry"] = {
cards["Big Berry"] = {
Name = "Big Berry",
Name="Big Berry",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=10,
Health=10,
Attack=5,
Attack=5,
Counter=4,
Counter=4,
Desc="On kill, restore '''2''' {{Stat|Health}} to self and allies in the row",
Desc="On kill, restore '''2''' {{Stat|Health}} to self and allies in the row",
Tribes={"All"}
Tribes={"All"},
}
}
cards["Biji"] = {
cards["Biji"] = {
Name = "Biji",
Name="Biji",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=8,
Health=8,
Attack=0,
Attack=0,
Counter=4,
Counter=4,
Desc="Apply '''3''' {{Stat|Bom}}<br>Increase by 1 when hit",
Desc="Apply '''3''' {{Stat|Bom}}<br>Increase by 1 when hit",
Tribes={"Clunkmasters"}
Tribes={"Clunkmasters"},
}
}
cards["Blunky"] = {
cards["Blunky"] = {
Name = "Blunky",
Name="Blunky",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=1,
Health=1,
Attack=1,
Attack=1,
Counter=2,
Counter=2,
Desc="When deployed, gain '''1''' {{Stat|Block}}",
Desc="When deployed, gain '''1''' {{Stat|Block}}",
Tribes={"All"}
Tribes={"All"},
}
}
cards["Bombom"] = {
cards["Bombom"] = {
Name = "Bombom",
Name="Bombom",
Types={NonPetCompanion=true, Companion=true, HotSpring=true},
Types={Companion=true, HotSpring=true, NonPetCompanion=true},
Health=15,
Health=15,
Attack=7,
Attack=7,
Line 138: Line 197:
Tribes={"All"},
Tribes={"All"},
Challenge="Use {{Keyword|Smackback}} to kill 20 enemies",
Challenge="Use {{Keyword|Smackback}} to kill 20 enemies",
ChallengeOrder=3
ChallengeOrder=3,
}
}
cards["Bonnie"] = {
cards["Bonnie"] = {
Name = "Bonnie",
Name="Bonnie",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=4,
Health=4,
Counter=4,
Counter=4,
Desc="Restore '''2''' {{Stat|Health}} and {{Keyword|Cleanse}} all allies",
Desc="Restore '''2''' {{Stat|Health}} and {{Keyword|Cleanse}} all allies",
Tribes={"All"}
Tribes={"All"},
}
}
cards["Chikichi"] = {
cards["Chikichi"] = {
Name = "Chikichi",
Name="Chikichi",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=2,
Health=2,
Attack=2,
Attack=2,
Counter=3,
Counter=3,
Desc="When {{Keyword|Sacrificed}}, summon [[Chikani]]",
Desc="When {{Keyword|Sacrificed}}, summon [[Chikani]]",
Tribes={"Shademancers"}
Tribes={"Shademancers"},
}
}
cards["Chompom"] = {
cards["Chompom"] = {
Name = "Chompom",
Name="Chompom",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=3,
Health=3,
Attack=1,
Attack=1,
Line 165: Line 224:
Other="3 {{Stat|Shell}}",
Other="3 {{Stat|Shell}}",
Desc="Deal additional damage equal to {{Stat|Shell}}",
Desc="Deal additional damage equal to {{Stat|Shell}}",
Tribes={"Snowdwellers"}
Tribes={"Snowdwellers"},
}
}
cards["Devicro"] = {
cards["Devicro"] = {
Name = "Devicro",
Name="Devicro",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=6,
Health=6,
Attack=2,
Attack=2,
Counter=4,
Counter=4,
Desc="When an ally is {{Keyword|Sacrificed}}, gain their {{Stat|Attack}}",
Desc="When an ally is {{Keyword|Sacrificed}}, gain their {{Stat|Attack}}",
Tribes={"Shademancers"}
Tribes={"Shademancers"},
}
}
cards["Dimona"] = {
cards["Dimona"] = {
Name = "Dimona",
Name="Dimona",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=6,
Health=6,
Attack=0,
Attack=0,
Counter=3,
Counter=3,
Desc="Apply '''1''' {{Stat|Demonize}}",
Desc="Apply '''1''' {{Stat|Demonize}}",
Tribes={"All"}
Tribes={"All"},
}
}
cards["Egg"] = {
cards["Egg"] = {
Name = "Egg",
Name="Egg",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=8,
Health=8,
Desc="When destroyed, summon [[Dregg]]",
Desc="When destroyed, summon [[Dregg]]",
Tribes={"Shademancers"}
Tribes={"Shademancers"},
}
}
cards["Firefist"] = {
cards["Firefist"] = {
Name = "Firefist",
Name="Firefist",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=12,
Health=12,
Attack=2,
Attack=2,
Counter=5,
Counter=5,
Desc="When {{Stat|Health}} lost, gain equal {{Stat|Spice}}",
Desc="When {{Stat|Health}} lost, gain equal {{Stat|Spice}}",
Tribes={"Snowdwellers"}
Tribes={"Snowdwellers"},
}
}
cards["Fizzle"] = {
cards["Fizzle"] = {
Name = "Fizzle",
Name="Fizzle",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=5,
Health=5,
Attack=0,
Attack=0,
Line 209: Line 268:
Other="x3 {{Stat|Frenzy}}",
Other="x3 {{Stat|Frenzy}}",
Desc="Apply '''1''' {{Stat|Bom}}",
Desc="Apply '''1''' {{Stat|Bom}}",
Tribes={"Clunkmasters"}
Tribes={"Clunkmasters"},
}
}
cards["Folby"] = {
cards["Folby"] = {
Name = "Folby",
Name="Folby",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=12,
Health=12,
Attack=3,
Attack=3,
Counter=4,
Counter=4,
Desc="{{Keyword|Trash}} '''1''' when hit",
Desc="{{Keyword|Trash}} '''1''' when hit",
Tribes={"Clunkmasters"}
Tribes={"Clunkmasters"},
}
}
cards["Foxee"] = {
cards["Foxee"] = {
Name = "Foxee",
Name="Foxee",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=4,
Health=4,
Attack=1,
Attack=1,
Counter=3,
Counter=3,
Other="x3 {{Stat|Frenzy}}",
Other="x3 {{Stat|Frenzy}}",
Tribes={"All"}
Tribes={"All"},
}
}
cards["Fungun"] = {
cards["Fungun"] = {
Name = "Fungun",
Name="Fungun",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=10,
Health=10,
Attack=0,
Attack=0,
Counter=5,
Counter=5,
Desc="Apply '''2''' {{Stat|Shroom}}<br>Increase by 1 when hit",
Desc="Apply '''2''' {{Stat|Shroom}}<br>Increase by 1 when hit",
Tribes={"Snowdwellers"}
Tribes={"Snowdwellers"},
}
}
cards["Groff"] = {
cards["Groff"] = {
Name = "Groff",
Name="Groff",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=5,
Health=5,
Attack=5,
Attack=5,
Other="x2 {{Stat|Frenzy}}",
Other="x2 {{Stat|Frenzy}}",
Desc="<span style=\"color:brown\">Trigger when an ally is {{Keyword|Sacrificed}}</span>",
Desc="<span style=\"color:brown\">Trigger when an ally is {{Keyword|Sacrificed}}</span>",
Tribes={"Shademancers"}
Tribes={"Shademancers"},
}
}
cards["Hazeblazer"] = {
cards["Hazeblazer"] = {
Name = "Hazeblazer",
Name="Hazeblazer",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=10,
Health=10,
Attack=0,
Attack=0,
Counter=5,
Counter=5,
Desc="Apply '''1''' {{Stat|Haze}}<br>Deal '''3''' damage to self",
Desc="Apply '''1''' {{Stat|Haze}}<br>Deal '''3''' damage to self",
Tribes={"Clunkmasters"}
Tribes={"Clunkmasters"},
}
}
cards["Jumbo"] = {
cards["Jumbo"] = {
Name = "Jumbo",
Name="Jumbo",
Types={NonPetCompanion=true, Companion=true, HotSpring=true},
Types={Companion=true, HotSpring=true, NonPetCompanion=true},
Health=13,
Health=13,
Attack=1,
Attack=1,
Line 265: Line 324:
Tribes={"All"},
Tribes={"All"},
Challenge="Deal 10 damage to your own team",
Challenge="Deal 10 damage to your own team",
ChallengeOrder=1
ChallengeOrder=1,
}
}
cards["Kernel"] = {
cards["Kernel"] = {
Name = "Kernel",
Name="Kernel",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=8,
Health=8,
Attack=3,
Attack=3,
Counter=4,
Counter=4,
Desc="When hit, apply '''3''' {{Stat|Shell}} to ally behind",
Desc="When hit, apply '''3''' {{Stat|Shell}} to ally behind",
Tribes={"Snowdwellers"}
Tribes={"Snowdwellers"},
}
}
cards["Kreggo"] = {
cards["Kreggo"] = {
Name = "Kreggo",
Name="Kreggo",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=7,
Health=7,
Attack=0,
Attack=0,
Counter=5,
Counter=5,
Desc="When a card is destroyed, gain '''+1''' {{Stat|Attack}}",
Desc="When a card is destroyed, gain '''+1''' {{Stat|Attack}}",
Tribes={"Clunkmasters"}
Tribes={"Clunkmasters"},
}
}
cards["Lil Berry"] = {
cards["Lil Berry"] = {
Name = "Lil' Berry",
Name="Lil' Berry",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=8,
Health=8,
Attack=2,
Attack=2,
Counter=4,
Counter=4,
Desc="When healed, gain '''+2''' {{Stat|Attack}}",
Desc="When healed, gain '''+2''' {{Stat|Attack}}",
Tribes={"Snowdwellers"}
Tribes={"Snowdwellers"},
}
}
cards["Mini Mika"] = {
cards["Mini Mika"] = {
Name = "Mini Mika",
Name="Mini Mika",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=8,
Health=8,
Attack=2,
Attack=2,
Counter=5,
Counter=5,
Desc="When hit with [[Junk]], gain '''x1''' {{Stat|Frenzy}}",
Desc="When hit with [[Junk]], gain '''x1''' {{Stat|Frenzy}}",
Tribes={"Clunkmasters"}
Tribes={"Clunkmasters"},
}
}
cards["Monch"] = {
cards["Monch"] = {
Name = "Monch",
Name="Monch",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=6,
Health=6,
Attack=2,
Attack=2,
Counter=4,
Counter=4,
Desc="Before attacking, eat allies in the row, absorbing their {{Stat|Attack}} and {{Stat|Health}}",
Desc="Before attacking, eat allies in the row, absorbing their {{Stat|Attack}} and {{Stat|Health}}",
Tribes={"Shademancers"}
Tribes={"Shademancers"},
}
}
cards["Naked Gnome"] = {
cards["Naked Gnome"] = {
Name = "Naked Gnome",
Name="Naked Gnome",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=1,
Health=1,
Attack=1,
Attack=1,
Counter=2,
Counter=2,
Tribes={"All"}
Tribes={"All"},
}
}
cards["Nom & Stompy"] = {
cards["Nom & Stompy"] = {
Name = "Nom & Stompy",
Name="Nom & Stompy",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=10,
Health=10,
Attack=10,
Attack=10,
Counter=10,
Counter=10,
Desc="When a card is destroyed, count down {{Stat|Counter}} by '''1'''",
Desc="When a card is destroyed, count down {{Stat|Counter}} by '''1'''",
Tribes={"Clunkmasters"}
Tribes={"Clunkmasters"},
}
}
cards["Pootie"] = {
cards["Pootie"] = {
Name = "Pootie",
Name="Pootie",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=1,
Health=1,
Attack=1,
Attack=1,
Counter=3,
Counter=3,
Desc="When destroyed, add '''x1''' {{Stat|Frenzy}} to a random ally",
Desc="When destroyed, add '''x1''' {{Stat|Frenzy}} to a random ally",
Tribes={"Snowdwellers"}
Tribes={"Snowdwellers"},
}
}
cards["Pyra"] = {
cards["Pyra"] = {
Name = "Pyra",
Name="Pyra",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=8,
Health=8,
Counter=5,
Counter=5,
Desc="Apply '''6''' {{Stat|Spice}} to ally ahead",
Desc="Apply '''6''' {{Stat|Spice}} to ally ahead",
Tribes={"Snowdwellers"}
Tribes={"Snowdwellers"},
}
}
cards["Scaven"] = {
cards["Scaven"] = {
Name = "Scaven",
Name="Scaven",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=8,
Health=8,
Attack=5,
Attack=5,
Counter=3,
Counter=3,
Desc="{{Keyword|Trash}} '''1'''",
Desc="{{Keyword|Trash}} '''1'''",
Tribes={"Clunkmasters"}
Tribes={"Clunkmasters"},
}
}
cards["Shelly"] = {
cards["Shelly"] = {
Name = "Shelly",
Name="Shelly",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=4,
Health=4,
Attack=1,
Attack=1,
Counter=3,
Counter=3,
Desc="When an enemy is killed, apply '''3''' {{Stat|Shell}} to the attacker",
Desc="When an enemy is killed, apply '''3''' {{Stat|Shell}} to the attacker",
Tribes={"Snowdwellers"}
Tribes={"Snowdwellers"},
}
}
cards["Shen"] = {
cards["Shen"] = {
Name = "Shen",
Name="Shen",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=6,
Health=6,
Attack=0,
Attack=0,
Counter=4,
Counter=4,
Desc="Apply '''1''' {{Stat|Overburn}}<br>Increase by 1 when hit",
Desc="Apply '''1''' {{Stat|Overburn}}<br>Increase by 1 when hit",
Tribes={"Shademancers"}
Tribes={"Shademancers"},
}
}
cards["Snobble"] = {
cards["Snobble"] = {
Name = "Snobble",
Name="Snobble",
Types={NonPetCompanion=true, Companion=true, HotSpring=true},
Types={Companion=true, HotSpring=true, NonPetCompanion=true},
Health=5,
Health=5,
Attack=2,
Attack=2,
Line 382: Line 441:
Tribes={"All"},
Tribes={"All"},
Challenge="Equip 10 [[Charms]]",
Challenge="Equip 10 [[Charms]]",
ChallengeOrder=0
ChallengeOrder=0,
}
}
cards["Snoffel"] = {
cards["Snoffel"] = {
Name = "Snoffel",
Name="Snoffel",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=4,
Health=4,
Counter=4,
Counter=4,
Desc="Apply '''1''' {{Stat|Snow}} to all enemies",
Desc="Apply '''1''' {{Stat|Snow}} to all enemies",
Tribes={"All"}
Tribes={"All"},
}
}
cards["Splinter"] = {
cards["Splinter"] = {
Name = "Splinter",
Name="Splinter",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=4,
Health=4,
Attack=4,
Attack=4,
Counter=4,
Counter=4,
Desc="When deployed, copy the effects of a random enemy in the row",
Desc="When deployed, copy the effects of a random enemy in the row",
Tribes={"Shademancers"}
Tribes={"Shademancers"},
}
}
cards["Taiga"] = {
cards["Taiga"] = {
Name = "Taiga",
Name="Taiga",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=8,
Health=8,
Counter=4,
Counter=4,
Other="2 {{Stat|Teeth}}",
Other="2 {{Stat|Teeth}}",
Desc="Gain '''2''' {{Stat|Teeth}}",
Desc="Gain '''2''' {{Stat|Teeth}}",
Tribes={"Shademancers"}
Tribes={"Shademancers"},
}
}
cards["Tinkerson Jr"] = {
cards["Tinkerson Jr"] = {
Name = "Tinkerson Jr",
Name="Tinkerson Jr.",
Types={NonPetCompanion=true, Companion=true},
Link="Tinkerson Jr",
Types={Companion=true, NonPetCompanion=true},
Health=8,
Health=8,
Attack=2,
Attack=2,
Counter=3,
Counter=3,
Desc="While active, add {{Stat|Attack}} to all [[Junk]] in your hand",
Desc="While active, add {{Stat|Attack}} to all [[Junk]] in your hand",
Tribes={"Clunkmasters"}
Tribes={"Clunkmasters"},
}
}
cards["Tiny Tyko"] = {
cards["Tiny Tyko"] = {
Name = "Tiny Tyko",
Name="Tiny Tyko",
Types={NonPetCompanion=true, Companion=true, HotSpring=true},
Types={Companion=true, HotSpring=true, NonPetCompanion=true},
Health=2,
Health=2,
Attack=1,
Attack=1,
Line 429: Line 489:
Tribes={"Snowdwellers"},
Tribes={"Snowdwellers"},
Challenge="Achieve a 4x kill combo",
Challenge="Achieve a 4x kill combo",
ChallengeOrder=2
ChallengeOrder=2,
}
}
cards["Tusk"] = {
cards["Tusk"] = {
Name = "Tusk",
Name="Tusk",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=5,
Health=5,
Attack=2,
Attack=2,
Counter=5,
Counter=5,
Desc="While active, add '''3''' {{Stat|Teeth}} to all allies",
Desc="While active, add '''3''' {{Stat|Teeth}} to all allies",
Tribes={"Shademancers"}
Tribes={"Shademancers"},
}
}
cards["Van Jun"] = {
cards["Van Jun"] = {
Name = "Van Jun",
Name="Van Jun",
Types={NonPetCompanion=true, Companion=true, HotSpring=true},
Types={Companion=true, HotSpring=true, NonPetCompanion=true},
Health=4,
Health=4,
Counter=4,
Counter=4,
Line 448: Line 508:
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Challenge="Summon 50 Allies",
Challenge="Summon 50 Allies",
ChallengeOrder=4
ChallengeOrder=4,
}
}
cards["Vesta"] = {
cards["Vesta"] = {
Name = "Vesta",
Name="Vesta",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=8,
Health=8,
Attack=0,
Attack=0,
Counter=4,
Counter=4,
Desc="Double the target's {{Stat|Overburn}}<br>{{Keyword|Barrage}}",
Desc="Double the target's {{Stat|Overburn}}<br>{{Keyword|Barrage}}",
Tribes={"Shademancers"}
Tribes={"Shademancers"},
}
}
cards["Wallop"] = {
cards["Wallop"] = {
Name = "Wallop",
Name="Wallop",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=9,
Health=9,
Attack=4,
Attack=4,
Counter=4,
Counter=4,
Desc="Deal '''8''' additional damage to {{Stat|Snow}}'d targets",
Desc="Deal '''8''' additional damage to {{Stat|Snow}}'d targets",
Tribes={"Snowdwellers"}
Tribes={"Snowdwellers"},
}
}
cards["Wort"] = {
cards["Wort"] = {
Name = "Wort",
Name="Wort",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=6,
Health=6,
Attack=0,
Attack=0,
Line 476: Line 536:
Other="x2 {{Stat|Frenzy}}",
Other="x2 {{Stat|Frenzy}}",
Desc="Apply '''2''' {{Stat|Shroom}}<br>{{Keyword|Aimless}}",
Desc="Apply '''2''' {{Stat|Shroom}}<br>{{Keyword|Aimless}}",
Tribes={"Snowdwellers"}
Tribes={"Snowdwellers"},
}
}
cards["Yuki"] = {
cards["Yuki"] = {
Name = "Yuki",
Name="Yuki",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=1,
Health=1,
Attack=1,
Attack=1,
Counter=4,
Counter=4,
Desc="Whenever anything is {{Stat|Snow}}'d, gain equal {{Stat|Attack}}",
Desc="Whenever anything is {{Stat|Snow}}'d, gain equal {{Stat|Attack}}",
Tribes={"Snowdwellers"}
Tribes={"Snowdwellers"},
}
}


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


--Items
--Items
cards["Azul Battle Axe"] = {
cards["Azul Battle Axe"] = {
Name = "Azul Battle Axe",
Name="Azul Battle Axe",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=3,
Attack=3,
Desc="Apply {{Stat|Overburn}} equal to damage dealt",
Desc="Apply {{Stat|Overburn}} equal to damage dealt",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=50
Price=50,
}
}
cards["Azul Candle"] = {
cards["Azul Candle"] = {
Name = "Azul Candle",
Name="Azul Candle",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=1,
Attack=1,
Desc="Double the target's {{Stat|Overburn}}",
Desc="Double the target's {{Stat|Overburn}}",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=50
Price=50,
}
}
cards["Azul Skull"] = {
cards["Azul Skull"] = {
Name = "Azul Skull",
Name="Azul Skull",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=0,
Attack=0,
Desc="Kill an ally<br>Apply '''4''' {{Stat|Overburn}} to front enemy",
Desc="Kill an ally<br>Apply '''4''' {{Stat|Overburn}} to front enemy",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=50
Price=50,
}
}
cards["B.I.N.K"] = {
cards["B.I.N.K"] = {
Name = "B.I.N.K",
Name="B.I.N.K",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=0,
Attack=0,
Desc="Apply '''2''' {{Stat|Ink}}<br>Hits all enemies",
Desc="Apply '''2''' {{Stat|Ink}}<br>Hits all enemies",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=50
Price=50,
}
}
cards["Beepop Mask"] = {
cards["Beepop Mask"] = {
Name = "Beepop Mask",
Name="Beepop Mask",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Summon [[Beepop]]",
Desc="Summon [[Beepop]]",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=60
Price=60,
}
}
cards["Berry Basket"] = {
cards["Berry Basket"] = {
Name = "Berry Basket",
Name="Berry Basket",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Restore '''2''' {{Stat|Health}} and {{Keyword|Cleanse}} all allies",
Desc="Restore '''2''' {{Stat|Health}} and {{Keyword|Cleanse}} all allies",
Tribes={"All"},
Tribes={"All"},
Price=50
Price=50,
}
}
cards["Berry Bell"] = {
cards["Berry Bell"] = {
Name = "Berry Bell",
Name="Berry Bell",
Types={Item=true},
Types={Item=true},
Desc="Increase {{Stat|Health}} by '''1'''<br>{{Keyword|Barrage}}",
Desc="Increase {{Stat|Health}} by '''1'''<br>{{Keyword|Barrage}}",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=25
Price=25,
}
}
cards["Berry Blade"] = {
cards["Berry Blade"] = {
Name = "Berry Blade",
Name="Berry Blade",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=4,
Attack=4,
Desc="Restore {{Stat|Health}} to front ally equal to damage dealt",
Desc="Restore {{Stat|Health}} to front ally equal to damage dealt",
Tribes={"All"},
Tribes={"All"},
Price=50
Price=50,
}
}
cards["Blank Mask"] = {
cards["Blank Mask"] = {
Name = "Blank Mask",
Name="Blank Mask",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Summon a copy of an ally<br>{{Keyword|Consume}}",
Desc="Summon a copy of an ally<br>{{Keyword|Consume}}",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=65
Price=65,
}
}
cards["Blaze Bom"] = {
cards["Blaze Bom"] = {
Name = "Blaze Bom",
Name="Blaze Bom",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=0,
Attack=0,
Desc="Add '''x1''' {{Stat|Frenzy}}<br>Apply '''4''' {{Stat|Bom}}",
Desc="Add '''x1''' {{Stat|Frenzy}}<br>Apply '''4''' {{Stat|Bom}}",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=50
Price=50,
}
}
cards["Blaze Tea"] = {
cards["Blaze Tea"] = {
Name = "Blaze Tea",
Name="Blaze Tea",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Add '''x1''' {{Stat|Frenzy}}<br>Increase {{Stat|Counter}} by '''1'''<br>{{Keyword|Consume}}",
Desc="Add '''x1''' {{Stat|Frenzy}}<br>Increase {{Stat|Counter}} by '''1'''<br>{{Keyword|Consume}}",
Tribes={"All"},
Tribes={"All"},
Price=62
Price=62,
}
}
cards["Blizzard Bottle"] = {
cards["Blizzard Bottle"] = {
Name = "Blizzard Bottle",
Name="Blizzard Bottle",
Types={Item=true},
Types={Item=true},
Attack=0,
Attack=0,
Desc="Apply '''3''' {{Stat|Snow}}",
Desc="Apply '''3''' {{Stat|Snow}}",
Tribes={"All"},
Tribes={"All"},
Price=30
Price=30,
}
}
cards["Bom Barrel"] = {
cards["Bom Barrel"] = {
Name = "Bom Barrel",
Name="Bom Barrel",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=0,
Attack=0,
Desc="Apply '''4''' {{Stat|Bom}}<br>{{Keyword|Barrage}}<br>{{Keyword|Trash}} '''4'''",
Desc="Apply '''4''' {{Stat|Bom}}<br>{{Keyword|Barrage}}<br>{{Keyword|Trash}} '''4'''",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=50
Price=50,
}
}
cards["Broken Vase"] = {
cards["Broken Vase"] = {
Name = "Broken Vase",
Name="Broken Vase",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=0,
Attack=0,
Desc="<span style=\"color:gray\">''Maybe it can be fixed...''</span>",
Desc="<span style=\"color:gray\">''Maybe it can be fixed...''</span>",
Tribes={"All"},
Tribes={"All"},
Price=15
Price=15,
}
}
cards["Clockwork Bom"] = {
cards["Clockwork Bom"] = {
Name = "Clockwork Bom",
Name="Clockwork Bom",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=2,
Attack=2,
Desc="Apply '''3''' {{Stat|Bom}}<br>{{Keyword|Critical}}",
Desc="Apply '''3''' {{Stat|Bom}}<br>{{Keyword|Critical}}",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=45
Price=45,
}
}
cards["Demonheart"] = {
cards["Demonheart"] = {
Name = "Demonheart",
Name="Demonheart",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=0,
Attack=0,
Desc="Apply '''1''' {{Stat|Demonize}}<br>Restore '''9''' {{Stat|Health}}",
Desc="Apply '''1''' {{Stat|Demonize}}<br>Restore '''9''' {{Stat|Health}}",
Tribes={"All"},
Tribes={"All"},
Price=40
Price=40,
}
}
cards["Dragon Pepper"] = {
cards["Dragon Pepper"] = {
Name = "Dragon Pepper",
Name="Dragon Pepper",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Apply '''7''' {{Stat|Spice}}<br>{{Keyword|Consume}}",
Desc="Apply '''7''' {{Stat|Spice}}<br>{{Keyword|Consume}}",
Tribes={"Snowdwellers"},
Tribes={"Snowdwellers"},
Price=55
Price=55,
}
}
cards["Fallow Mask"] = {
cards["Fallow Mask"] = {
Name = "Fallow Mask",
Name="Fallow Mask",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Summon [[Fallow]]",
Desc="Summon [[Fallow]]",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=50
Price=50,
}
}
cards["Flamewater"] = {
cards["Flamewater"] = {
Name = "Flamewater",
Name="Flamewater",
Types={Item=true},
Types={Item=true},
Desc="Increase {{Stat|Attack}} by '''1'''",
Desc="Increase {{Stat|Attack}} by '''1'''",
Tribes={"Snowdwellers"},
Tribes={"Snowdwellers"},
Price=25
Price=25,
}
}
cards["Flask of Ink"] = {
cards["Flask of Ink"] = {
Name = "Flask of Ink",
Name="Flask of Ink",
Types={Item=true},
Types={Item=true},
Attack=0,
Attack=0,
Desc="Apply '''4''' {{Stat|Ink}}",
Desc="Apply '''4''' {{Stat|Ink}}",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=25
Price=25,
}
}
cards["Foggy Brew"] = {
cards["Foggy Brew"] = {
Name = "Foggy Brew",
Name="Foggy Brew",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=0,
Attack=0,
Desc="Apply '''1''' {{Stat|Haze}}<br>{{Keyword|Aimless}}<br>{{Keyword|Consume}}",
Desc="Apply '''1''' {{Stat|Haze}}<br>{{Keyword|Aimless}}<br>{{Keyword|Consume}}",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=50
Price=50,
}
}
cards["Forging Stove"] = {
cards["Forging Stove"] = {
Name = "Forging Stove",
Name="Forging Stove",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Destroy a card in your hand<br>Add its {{Stat|Attack}} to a random ally",
Desc="Destroy a card in your hand<br>Add its {{Stat|Attack}} to a random ally",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=50
Price=50,
}
}
cards["Frenzy Wrench"] = {
cards["Frenzy Wrench"] = {
Name = "Frenzy Wrench",
Name="Frenzy Wrench",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Add '''x1''' {{Stat|Frenzy}} to a card in your hand<br>{{Keyword|Recycle}} '''2'''",
Desc="Add '''x1''' {{Stat|Frenzy}} to a card in your hand<br>{{Keyword|Recycle}} '''2'''",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=50
Price=50,
}
}
cards["Frost Bell"] = {
cards["Frost Bell"] = {
Name = "Frost Bell",
Name="Frost Bell",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=0,
Attack=0,
Desc="Apply '''2''' {{Stat|Frost}}<br>{{Keyword|Barrage}}",
Desc="Apply '''2''' {{Stat|Frost}}<br>{{Keyword|Barrage}}",
Tribes={"All"},
Tribes={"All"},
Price=50
Price=50,
}
}
cards["Frostbite Shard"] = {
cards["Frostbite Shard"] = {
Name = "Frostbite Shard",
Name="Frostbite Shard",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Reduce the target's effects by '''1'''<br>{{Keyword|Consume}}",
Desc="Reduce the target's effects by '''1'''<br>{{Keyword|Consume}}",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=50
Price=50,
}
}
cards["Frostbloom"] = {
cards["Frostbloom"] = {
Name = "Frostbloom",
Name="Frostbloom",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=0,
Attack=0,
Desc="Apply '''3''' {{Stat|Frost}}",
Desc="Apply '''3''' {{Stat|Frost}}",
Tribes={"All"},
Tribes={"All"},
Price=45
Price=45,
}
}
cards["Gearhammer"] = {
cards["Gearhammer"] = {
Name = "Gearhammer",
Name="Gearhammer",
Types={Item=true},
Types={Item=true},
Attack=2,
Attack=2,
Desc="Gain '''+1''' {{Stat|Attack}}",
Desc="Gain '''+1''' {{Stat|Attack}}",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=10
Price=10,
}
}
cards["Gigi's Cookie Box"] = {
cards["Gigi's Cookie Box"] = {
Name = "Gigi's Cookie Box",
Name="Gigi's Cookie Box",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Add '''1''' {{Stat|Scrap}} to all allies<br>{{Keyword|Consume}}",
Desc="Add '''1''' {{Stat|Scrap}} to all allies<br>{{Keyword|Consume}}",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=50
Price=50,
}
}
cards["Gigi's Gizmo"] = {
cards["Gigi's Gizmo"] = {
Name = "Gigi's Gizmo",
Name="Gigi's Gizmo",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Add '''1''' {{Stat|Scrap}}<br>{{Keyword|Recycle}} '''1'''<br>{{Keyword|Draw}} '''2'''",
Desc="Add '''1''' {{Stat|Scrap}}<br>{{Keyword|Recycle}} '''1'''<br>{{Keyword|Draw}} '''2'''",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=50
Price=50,
}
}
cards["Grabber"] = {
cards["Grabber"] = {
Name = "Grabber",
Name="Grabber",
Types={Item=true, ShopItem=true, InventorsHut=true},
Types={InventorsHut=true, Item=true, ShopItem=true},
Attack=1,
Attack=1,
Desc="{{Keyword|Noomlin}}<br>{{Keyword|Yank}}",
Desc="{{Keyword|Noomlin}}<br>{{Keyword|Yank}}",
Line 926: Line 986:
Price=40,
Price=40,
Challenge="Kill 20 enemies with [[Items]]",
Challenge="Kill 20 enemies with [[Items]]",
ChallengeOrder=2
ChallengeOrder=2,
}
}
cards["Gunk Fruit"] = {
cards["Gunk Fruit"] = {
Name = "Gunk Fruit",
Name="Gunk Fruit",
Types={Item=true},
Types={Item=true},
Attack=1,
Attack=1,
Desc="{{Keyword|Consume}}",
Desc="{{Keyword|Consume}}",
Tribes={"All"},
Tribes={"All"},
Price=0
Price=0,
}
}
cards["Haze Keg"] = {
cards["Haze Keg"] = {
Name = "Haze Keg",
Name="Haze Keg",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=0,
Attack=0,
Desc="Apply '''1''' {{Stat|Haze}}<br>{{Keyword|Recycle}} '''2'''",
Desc="Apply '''1''' {{Stat|Haze}}<br>{{Keyword|Recycle}} '''2'''",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=50
Price=50,
}
}
cards["Hongo's Hammer"] = {
cards["Hongo's Hammer"] = {
Name = "Hongo's Hammer",
Name="Hongo's Hammer",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=1,
Attack=1,
Desc="Apply '''3''' {{Stat|Shroom}}",
Desc="Apply '''3''' {{Stat|Shroom}}",
Tribes={"Snowdwellers"},
Tribes={"Snowdwellers"},
Price=40
Price=40,
}
}
cards["Ice Dice"] = {
cards["Ice Dice"] = {
Name = "Ice Dice",
Name="Ice Dice",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Apply '''1''' {{Stat|Block}} to a random ally<br>Apply '''1''' {{Stat|Block}} to a random enemy",
Desc="Apply '''1''' {{Stat|Block}} to a random ally<br>Apply '''1''' {{Stat|Block}} to a random enemy",
Tribes={"All"},
Tribes={"All"},
Price=40
Price=40,
}
}
cards["JunJun Mask"] = {
cards["JunJun Mask"] = {
Name = "Junjun Mask",
Name="Junjun Mask",
Link = "JunJun Mask",
Link="JunJun Mask",
Types={Item=true},
Types={Item=true},
Desc="Summon [[JunJun|Junjun]]",
Desc="Summon [[JunJun|Junjun]]",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=30
Price=30,
}
}
cards["Junk"] = {
cards["Junk"] = {
Name = "Junk",
Name="Junk",
Types={Item=true},
Types={Item=true},
Attack=0,
Attack=0,
Desc="<span style=\"color:gray\">''Does absolutely nothing...''</span>",
Desc="<span style=\"color:gray\">''Does absolutely nothing...''</span>",
Tribes={"All"},
Tribes={"All"},
Price=0
Price=0,
}
}
cards["Leech Mask"] = {
cards["Leech Mask"] = {
Name = "Leech Mask",
Name="Leech Mask",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Summon [[Leech]] on the enemy side<br>{{Keyword|Consume}}",
Desc="Summon [[Leech]] on the enemy side<br>{{Keyword|Consume}}",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=50
Price=50,
}
}
cards["Lumin Goop"] = {
cards["Lumin Goop"] = {
Name = "Lumin Goop",
Name="Lumin Goop",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="<span style=\"color:gray\">''Could be used to fix something...''<\span>",
Desc="<span style=\"color:gray\">''Could be used to fix something...''<span>",
Tribes={"All"},
Tribes={"All"},
Price=15
Price=15,
}
}
cards["Lumin Lantern"] = {
cards["Lumin Lantern"] = {
Name = "Lumin Lantern",
Name="Lumin Lantern",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Boost a random ally's effects by '''1'''<br>Boost a random enemy's effects by '''2'''",
Desc="Boost a random ally's effects by '''1'''<br>Boost a random enemy's effects by '''2'''",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=50
Price=50,
}
}
cards["Magma Booster"] = {
cards["Magma Booster"] = {
Name = "Magma Booster",
Name="Magma Booster",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Increase {{Stat|Attack}} by '''3'''<br>Add {{Keyword|Aimless}} to the target",
Desc="Increase {{Stat|Attack}} by '''3'''<br>Add {{Keyword|Aimless}} to the target",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=50
Price=50,
}
}
cards["Mini Muncher"] = {
cards["Mini Muncher"] = {
Name = "Mini Muncher",
Name="Mini Muncher",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Destroy a card in your hand<br>{{Keyword|Noomlin}}",
Desc="Destroy a card in your hand<br>{{Keyword|Noomlin}}",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=50
Price=50,
}
}
cards["Molten Dip"] = {
cards["Molten Dip"] = {
Name = "Molten Dip",
Name="Molten Dip",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Increase {{Stat|Attack}} by '''2'''<br>{{Keyword|Barrage}}<br>{{Keyword|Consume}}",
Desc="Increase {{Stat|Attack}} by '''2'''<br>{{Keyword|Barrage}}<br>{{Keyword|Consume}}",
Tribes={"All"},
Tribes={"All"},
Price=50
Price=50,
}
}
cards["Noomlin Biscuit"] = {
cards["Noomlin Biscuit"] = {
Name = "Noomlin Biscuit",
Name="Noomlin Biscuit",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Add {{Keyword|Noomlin}} to a card in your hand<br>{{Keyword|Consume}}",
Desc="Add {{Keyword|Noomlin}} to a card in your hand<br>{{Keyword|Consume}}",
Tribes={"All"},
Tribes={"All"},
Price=55
Price=55,
}
}
cards["Nutshell Cake"] = {
cards["Nutshell Cake"] = {
Name = "Nutshell Cake",
Name="Nutshell Cake",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Apply '''9''' {{Stat|Shell}}<br>Reduce {{Stat|Health}} by '''2'''<br>{{Keyword|Consume}}",
Desc="Apply '''9''' {{Stat|Shell}}<br>Reduce {{Stat|Health}} by '''2'''<br>{{Keyword|Consume}}",
Tribes={"Snowdwellers"},
Tribes={"Snowdwellers"},
Price=50
Price=50,
}
}
cards["Peppereaper"] = {
cards["Peppereaper"] = {
Name = "Peppereaper",
Name="Peppereaper",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=1,
Attack=1,
Desc="Apply '''4''' {{Stat|Spice}}",
Desc="Apply '''4''' {{Stat|Spice}}",
Tribes={"Snowdwellers"},
Tribes={"Snowdwellers"},
Price=45
Price=45,
}
}
cards["Peppering"] = {
cards["Peppering"] = {
Name = "Peppering",
Name="Peppering",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Apply '''2''' {{Stat|Spice}} to all allies",
Desc="Apply '''2''' {{Stat|Spice}} to all allies",
Tribes={"Snowdwellers"},
Tribes={"Snowdwellers"},
Price=40
Price=40,
}
}
cards["Pinkberry Juice"] = {
cards["Pinkberry Juice"] = {
Name = "Pinkberry Juice",
Name="Pinkberry Juice",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Increase {{Stat|Health}} by '''4'''",
Desc="Increase {{Stat|Health}} by '''4'''",
Tribes={"All"},
Tribes={"All"},
Price=50
Price=50,
}
}
cards["Pom Mask"] = {
cards["Pom Mask"] = {
Name = "Pom Mask",
Name="Pom Mask",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Summon [[Pom]] on the enemy side<br>{{Keyword|Consume}}",
Desc="Summon [[Pom]] on the enemy side<br>{{Keyword|Consume}}",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=50
Price=50,
}
}
cards["Pombomb"] = {
cards["Pombomb"] = {
Name = "Pombomb",
Name="Pombomb",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=5,
Attack=5,
Desc="Hits all undamaged enemies",
Desc="Hits all undamaged enemies",
Tribes={"All"},
Tribes={"All"},
Price=50
Price=50,
}
}
cards["Proto-Stomper"] = {
cards["Proto-Stomper"] = {
Name = "Proto-Stomper",
Name="Proto-Stomper",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=8,
Attack=8,
Desc="{{Keyword|Trash}} '''2'''",
Desc="{{Keyword|Trash}} '''2'''",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=55
Price=55,
}
}
cards["Scrap Pile"] = {
cards["Scrap Pile"] = {
Name = "Scrap Pile",
Name="Scrap Pile",
Types={Item=true, ShopItem=true, InventorsHut=true},
Types={InventorsHut=true, Item=true, ShopItem=true},
Desc="Add '''1''' {{Stat|Scrap}}",
Desc="Add '''1''' {{Stat|Scrap}}",
Tribes={"Snowdwellers"},
Tribes={"Snowdwellers"},
Price=40,
Price=40,
Challenge="Block 10 hits with [[Clunkers]]",
Challenge="Block 10 hits with [[Clunkers]]",
ChallengeOrder=3
ChallengeOrder=3,
}
}
cards["Scrappy Sword"] = {
cards["Scrappy Sword"] = {
Name = "Scrappy Sword",
Name="Scrappy Sword",
Types={Item=true},
Types={Item=true},
Attack=2,
Attack=2,
Desc="<span style=\"color:gray\">''A traditional trusty weapon''<\span>",
Desc="<span style=\"color:gray\">''A traditional trusty weapon''<span>",
Tribes={"Snowdwellers"},
Tribes={"Snowdwellers"},
Price=10
Price=10,
}
}
cards["Shade Clay"] = {
cards["Shade Clay"] = {
Name = "Shade Clay",
Name="Shade Clay",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Make a copy of an '''Item''' in your hand<br>{{Keyword|Consume}}",
Desc="Make a copy of an '''Item''' in your hand<br>{{Keyword|Consume}}",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=50
Price=50,
}
}
cards["Shade Wisp"] = {
cards["Shade Wisp"] = {
Name = "Shade Wisp",
Name="Shade Wisp",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Summon a copy of an enemy on your side with '''1''' {{Stat|Health}}",
Desc="Summon a copy of an enemy on your side with '''1''' {{Stat|Health}}",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=50
Price=50,
}
}
cards["Sheepopper Mask"] = {
cards["Sheepopper Mask"] = {
Name = "Sheepopper Mask",
Name="Sheepopper Mask",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Summon [[Sheepopper]] on the enemy side<br>{{Keyword|Consume}}",
Desc="Summon [[Sheepopper]] on the enemy side<br>{{Keyword|Consume}}",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=50
Price=50,
}
}
cards["Shell Shield"] = {
cards["Shell Shield"] = {
Name = "Shell Shield",
Name="Shell Shield",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Apply '''4''' {{Stat|Shell}}",
Desc="Apply '''4''' {{Stat|Shell}}",
Tribes={"Snowdwellers"},
Tribes={"Snowdwellers"},
Price=40
Price=40,
}
}
cards["Shellbo"] = {
cards["Shellbo"] = {
Name = "Shellbo",
Name="Shellbo",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=2,
Attack=2,
Desc="Apply '''5''' {{Stat|Shell}}<br>{{Keyword|Barrage}}",
Desc="Apply '''5''' {{Stat|Shell}}<br>{{Keyword|Barrage}}",
Tribes={"Snowdwellers"},
Tribes={"Snowdwellers"},
Price=50
Price=50,
}
}
cards["Skullmist Tea"] = {
cards["Skullmist Tea"] = {
Name = "Skullmist Tea",
Name="Skullmist Tea",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=0,
Attack=0,
Desc="Kill an ally<br>Add their {{Stat|Attack}} to all allies<br>{{Keyword|Consume}}",
Desc="Kill an ally<br>Add their {{Stat|Attack}} to all allies<br>{{Keyword|Consume}}",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=50
Price=50,
}
}
cards["Slapcrackers"] = {
cards["Slapcrackers"] = {
Name = "Slapcrackers",
Name="Slapcrackers",
Types={Item=true, ShopItem=true, InventorsHut=true},
Types={InventorsHut=true, Item=true, ShopItem=true},
Attack=1,
Attack=1,
Other="x4 {{Stat|Frenzy}}",
Other="x4 {{Stat|Frenzy}}",
Line 1,146: Line 1,206:
Price=50,
Price=50,
Challenge="Achieve a 3x kill combo",
Challenge="Achieve a 3x kill combo",
ChallengeOrder=0
ChallengeOrder=0,
}
}
cards["Snow Stick"] = {
cards["Snow Stick"] = {
Name = "Snow Stick",
Name="Snow Stick",
Types={Item=true},
Types={Item=true},
Attack=1,
Attack=1,
Desc="Apply '''2''' {{Stat|Snow}}",
Desc="Apply '''2''' {{Stat|Snow}}",
Tribes={"Snowdwellers"},
Tribes={"Snowdwellers"},
Price=30
Price=30,
}
}
cards["Snowcake"] = {
cards["Snowcake"] = {
Name = "Snowcake",
Name="Snowcake",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=0,
Attack=0,
Desc="Apply '''10''' {{Stat|Snow}}<br>{{Keyword|Consume}}",
Desc="Apply '''10''' {{Stat|Snow}}<br>{{Keyword|Consume}}",
Tribes={"All"},
Tribes={"All"},
Price=50
Price=50,
}
}
cards["Snowzooka"] = {
cards["Snowzooka"] = {
Name = "Snowzooka",
Name="Snowzooka",
Types={Item=true},
Types={Item=true},
Attack=0,
Attack=0,
Desc="Apply '''2''' {{Stat|Snow}}<br>{{Keyword|Critical}}",
Desc="Apply '''2''' {{Stat|Snow}}<br>{{Keyword|Critical}}",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=30
Price=30,
}
}
cards["Soulbound Skulls"] = {
cards["Soulbound Skulls"] = {
Name = "Soulbound Skulls",
Name="Soulbound Skulls",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Add {{Keyword|Soulbound}} to an ally<br>Add {{Keyword|Soulbound}} to a random enemy",
Desc="Add {{Keyword|Soulbound}} to an ally<br>Add {{Keyword|Soulbound}} to a random enemy",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=50
Price=50,
}
}
cards["Spice Stones"] = {
cards["Spice Stones"] = {
Name = "Spice Stones",
Name="Spice Stones",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Apply '''1''' {{Stat|Spice}}<br>Double the target's {{Stat|Spice}}",
Desc="Apply '''1''' {{Stat|Spice}}<br>Double the target's {{Stat|Spice}}",
Tribes={"Snowdwellers"},
Tribes={"Snowdwellers"},
Price=50
Price=50,
}
}
cards["Spore Pack"] = {
cards["Spore Pack"] = {
Name = "Spore Pack",
Name="Spore Pack",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=0,
Attack=0,
Desc="Apply '''2''' {{Stat|Shroom}}<br>{{Keyword|Barrage}}",
Desc="Apply '''2''' {{Stat|Shroom}}<br>{{Keyword|Barrage}}",
Tribes={"Snowdwellers"},
Tribes={"Snowdwellers"},
Price=50
Price=50,
}
}
cards["Storm Globe"] = {
cards["Storm Globe"] = {
Name = "Storm Globe",
Name="Storm Globe",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=0,
Attack=0,
Desc="Apply '''4''' {{Stat|Snow}}<br>Reduce by 1 when played",
Desc="Apply '''4''' {{Stat|Snow}}<br>Reduce by 1 when played",
Tribes={"All"},
Tribes={"All"},
Price=40
Price=40,
}
}
cards["Stormbear Spirit"] = {
cards["Stormbear Spirit"] = {
Name = "Stormbear Spirit",
Name="Stormbear Spirit",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=8,
Attack=8,
Desc="Target must be {{Stat|Snow}}'d",
Desc="Target must be {{Stat|Snow}}'d",
Tribes={"Snowdwellers"},
Tribes={"Snowdwellers"},
Price=45
Price=45,
}
}
cards["Sun Rod"] = {
cards["Sun Rod"] = {
Name = "Sun Rod",
Name="Sun Rod",
Types={Item=true},
Types={Item=true},
Desc="Count down {{Stat|Counter}} by '''2'''",
Desc="Count down {{Stat|Counter}} by '''2'''",
Tribes={"Snowdwellers"},
Tribes={"Snowdwellers"},
Price=50
Price=50,
}
}
cards["Sunburst Tootoo"] = {
cards["Sunburst Tootoo"] = {
Name = "Sunburst Tootoo",
Name="Sunburst Tootoo",
Types={Item=true},
Types={Item=true},
Attack=1,
Attack=1,
Desc="Count down {{Stat|Counter}} by '''2'''",
Desc="Count down {{Stat|Counter}} by '''2'''",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=50
Price=50,
}
}
cards["Suncream"] = {
cards["Suncream"] = {
Name = "Suncream",
Name="Suncream",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Reduce {{Stat|Counter}} by '''1'''<br>{{Keyword|Recycle}} '''1'''<br>{{Keyword|Consume}}",
Desc="Reduce {{Stat|Counter}} by '''1'''<br>{{Keyword|Recycle}} '''1'''<br>{{Keyword|Consume}}",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=60
Price=60,
}
}
cards["Sunlight Drum"] = {
cards["Sunlight Drum"] = {
Name = "Sunlight Drum",
Name="Sunlight Drum",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Count down {{Stat|Counter}} by '''1'''<br>{{Keyword|Barrage}}",
Desc="Count down {{Stat|Counter}} by '''1'''<br>{{Keyword|Barrage}}",
Tribes={"All"},
Tribes={"All"},
Price=50
Price=50,
}
}
cards["Sunsong Box"] = {
cards["Sunsong Box"] = {
Name = "Sunsong Box",
Name="Sunsong Box",
Types={Item=true},
Types={Item=true},
Desc="Increase {{Stat|Attack}} by '''1'''<br>Count down {{Stat|Counter}} by '''1'''<br>{{Keyword|Recycle}} '''1'''",
Desc="Increase {{Stat|Attack}} by '''1'''<br>Count down {{Stat|Counter}} by '''1'''<br>{{Keyword|Recycle}} '''1'''",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=50
Price=50,
}
}
cards["Supersnower"] = {
cards["Supersnower"] = {
Name = "Supersnower",
Name="Supersnower",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=0,
Attack=0,
Desc="Apply '''3''' {{Stat|Snow}}<br>{{Keyword|Barrage}}<br>{{Keyword|Recycle}} '''2'''",
Desc="Apply '''3''' {{Stat|Snow}}<br>{{Keyword|Barrage}}<br>{{Keyword|Recycle}} '''2'''",
Tribes={"Clunkmasters"},
Tribes={"Clunkmasters"},
Price=50
Price=50,
}
}
cards["Tar Blade"] = {
cards["Tar Blade"] = {
Name = "Tar Blade",
Name="Tar Blade",
Types={Item=true},
Types={Item=true},
Attack=0,
Attack=0,
Desc="Deal additional damage equal to [[Tar Blade]]s in hand",
Desc="Deal additional damage equal to [[Tar Blade]]s in hand",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=10
Price=10,
}
}
cards["The Lumin Vase"] = {
cards["The Lumin Vase"] = {
Name = "The Lumin Vase",
Name="The Lumin Vase",
Types={Item=true},
Types={Item=true},
Desc="Apply '''1''' {{Stat|Lumin}}",
Desc="Apply '''1''' {{Stat|Lumin}}",
Tribes={"All"},
Tribes={"All"},
Price=500
Price=500,
}
}
cards["Tiger Skull"] = {
cards["Tiger Skull"] = {
Name = "Tiger Skull",
Name="Tiger Skull",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=0,
Attack=0,
Desc="Kill an ally<br>Apply '''3''' {{Stat|Teeth}} to allies in the row",
Desc="Kill an ally<br>Apply '''3''' {{Stat|Teeth}} to allies in the row",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=50
Price=50,
}
}
cards["Tigris Mask"] = {
cards["Tigris Mask"] = {
Name = "Tigris Mask",
Name="Tigris Mask",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Desc="Summon [[Tigris]]<br>{{Keyword|Consume}}",
Desc="Summon [[Tigris]]<br>{{Keyword|Consume}}",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=50
Price=50,
}
}
cards["Yeti Skull"] = {
cards["Yeti Skull"] = {
Name = "Yeti Skull",
Name="Yeti Skull",
Types={Item=true, ShopItem=true},
Types={Item=true, ShopItem=true},
Attack=0,
Attack=0,
Desc="Kill an ally<br>Apply '''3''' {{Stat|Snow}} to enemies in the row",
Desc="Kill an ally<br>Apply '''3''' {{Stat|Snow}} to enemies in the row",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=50
Price=50,
}
}


--Shades
--Shades
cards["Beepop"] = {
cards["Beepop"] = {
Name = "Beepop",
Name="Beepop",
Types={Shade=true},
Types={Shade=true},
Health=1,
Health=1,
Desc="When destroyed, apply '''4''' {{Stat|Overburn}} to the attacker",
Desc="When destroyed, apply '''4''' {{Stat|Overburn}} to the attacker",
SummonCon="Using [[Beepop Mask]]"
SummonCon="Using [[Beepop Mask]]",
}
cards["Chikagoru"] = {
Name="Chikagoru",
Types={Shade=true},
Health=10,
Attack=10,
Counter=3,
SummonCon="{{Keyword|Sacrificing}} [[Chikashi]]",
}
}
cards["Chikani"] = {
cards["Chikani"] = {
Name = "Chikani",
Name="Chikani",
Types={Shade=true},
Types={Shade=true},
Health=4,
Health=4,
Line 1,308: Line 1,376:
Counter=3,
Counter=3,
Desc="When {{Keyword|Sacrificed}}, summon [[Chikasan]]",
Desc="When {{Keyword|Sacrificed}}, summon [[Chikasan]]",
SummonCon="{{Keyword|Sacrificing}} [[Chikichi]]"
SummonCon="{{Keyword|Sacrificing}} [[Chikichi]]",
}
}
cards["Chikasan"] = {
cards["Chikasan"] = {
Name = "Chikasan",
Name="Chikasan",
Types={Shade=true},
Types={Shade=true},
Health=6,
Health=6,
Line 1,317: Line 1,385:
Counter=3,
Counter=3,
Desc="When {{Keyword|Sacrificed}}, summon [[Chikashi]]",
Desc="When {{Keyword|Sacrificed}}, summon [[Chikashi]]",
SummonCon="{{Keyword|Sacrificing}} [[Chikani]]"
SummonCon="{{Keyword|Sacrificing}} [[Chikani]]",
}
}
cards["Chikashi"] = {
cards["Chikashi"] = {
Name = "Chikashi",
Name="Chikashi",
Types={Shade=true},
Types={Shade=true},
Health=8,
Health=8,
Line 1,326: Line 1,394:
Counter=3,
Counter=3,
Desc="When {{Keyword|Sacrificed}}, summon [[Chikagoru]]",
Desc="When {{Keyword|Sacrificed}}, summon [[Chikagoru]]",
SummonCon="{{Keyword|Sacrificing}} [[Chikasan]]"
SummonCon="{{Keyword|Sacrificing}} [[Chikasan]]",
}
cards["Chikagoru"] = {
Name = "Chikagoru",
Types={Shade=true},
Health=10,
Attack=10,
Counter=3,
SummonCon="{{Keyword|Sacrificing}} [[Chikashi]]"
}
}
cards["Dregg"] = {
cards["Dregg"] = {
Name = "Dregg",
Name="Dregg",
Types={Shade=true},
Types={Shade=true},
Health=4,
Health=4,
Line 1,343: Line 1,403:
Counter=5,
Counter=5,
Other="x3 {{Stat|Frenzy}}",
Other="x3 {{Stat|Frenzy}}",
SummonCon="[[Egg]] is destroyed"
SummonCon="[[Egg]] is destroyed",
}
}
cards["Fallow"] = {
cards["Fallow"] = {
Name = "Fallow",
Name="Fallow",
Types={Shade=true},
Types={Shade=true},
Health=6,
Health=6,
Line 1,352: Line 1,412:
Counter=4,
Counter=4,
Desc="{{Keyword|Barrage}}",
Desc="{{Keyword|Barrage}}",
SummonCon="Using [[Fallow Mask]]"
SummonCon="Using [[Fallow Mask]]",
}
}
cards["JunJun"] = {
cards["JunJun"] = {
Name = "Junjun",
Name="Junjun",
Link = "JunJun",
Link="JunJun",
Types={Shade=true},
Types={Shade=true},
Health=3,
Health=3,
Line 1,362: Line 1,422:
Counter=3,
Counter=3,
Desc="{{Keyword|Aimless}}",
Desc="{{Keyword|Aimless}}",
SummonCon="Using [[JunJun Mask|Junjun Mask]]"
SummonCon="Using [[JunJun Mask|Junjun Mask]]",
}
}
cards["Leech"] = {
cards["Leech"] = {
Name = "Leech",
Name="Leech",
Types={Shade=true},
Types={Shade=true},
Health=5,
Health=5,
Line 1,371: Line 1,431:
Counter=3,
Counter=3,
Desc="Take '''3''' {{Stat|Health}} from all allies",
Desc="Take '''3''' {{Stat|Health}} from all allies",
SummonCon="Using [[Leech Mask]]"
SummonCon="Using [[Leech Mask]]",
}
}
cards["Pom"] = {
cards["Pom"] = {
Name = "Pom",
Name="Pom",
Types={Shade=true},
Types={Shade=true},
Health=7,
Health=7,
Desc="While active, add {{Keyword|Barrage}} to all enemies",
Desc="While active, add {{Keyword|Barrage}} to all enemies",
SummonCon="Using [[Pom Mask]]"
SummonCon="Using [[Pom Mask]]",
}
}
cards["Sheepopper"] = {
cards["Sheepopper"] = {
Name = "Sheepopper",
Name="Sheepopper",
Types={Shade=true},
Types={Shade=true},
Health=4,
Health=4,
Desc="When destroyed, deal '''8''' damage to all allies",
Desc="When destroyed, deal '''8''' damage to all allies",
SummonCon="Using [[Sheepopper Mask]]"
SummonCon="Using [[Sheepopper Mask]]",
}
}
cards["Tigris"] = {
cards["Tigris"] = {
Name = "Tigris",
Name="Tigris",
Types={Shade=true},
Types={Shade=true},
Health=4,
Health=4,
Other="2 {{Stat|Teeth}}",
Other="2 {{Stat|Teeth}}",
Desc="Gain '''1''' {{Stat|Teeth}} when hit, or an ally is hit",
Desc="Gain '''1''' {{Stat|Teeth}} when hit, or an ally is hit",
SummonCon="Using [[Tigris Mask]]"
SummonCon="Using [[Tigris Mask]]",
}
}


--Enemies
--Enemies
cards["Baby Snowbo"] = {
cards["Baby Snowbo"] = {
Name = "Baby Snowbo",
Name="Baby Snowbo",
Types={Enemy=true},
Types={Enemy=true},
Health=1,
Health=1,
Line 1,405: Line 1,465:
}
}
cards["Berry Witch"] = {
cards["Berry Witch"] = {
Name = "Berry Witch",
Name="Berry Witch",
Types={Enemy=true},
Types={Enemy=true},
Health=6,
Health=6,
Attack=2,
Attack=2,
Counter=4,
Counter=4,
Desc="Restore '''2''' {{Stat|Health}} to all allies"
Desc="Restore '''2''' {{Stat|Health}} to all allies",
}
}
cards["Bigfoot"] = {
cards["Bigfoot"] = {
Name = "Bigfoot",
Name="Bigfoot",
Types={Enemy=true},
Types={Enemy=true},
Health=12,
Health=12,
Attack=5,
Attack=5,
Counter=4,
Counter=4,
Desc="{{Keyword|Barrage}}"
Desc="{{Keyword|Barrage}}",
}
}
cards["Bulbhead"] = {
cards["Bulbhead"] = {
Name = "Bulbhead",
Name="Bulbhead",
Types={Enemy=true},
Types={Enemy=true},
Health=8,
Health=8,
Attack=0,
Attack=0,
Counter=5,
Counter=5,
Desc="Apply '''2''' {{Stat|Shroom}}<br>{{Keyword|Barrage}}"
Desc="Apply '''2''' {{Stat|Shroom}}<br>{{Keyword|Barrage}}",
}
}
cards["Burster"] = {
cards["Burster"] = {
Name = "Burster",
Name="Burster",
Types={Enemy=true},
Types={Enemy=true},
Health=10,
Health=10,
Line 1,435: Line 1,495:
Counter=4,
Counter=4,
Other="{{Stat|Resist Snow}}",
Other="{{Stat|Resist Snow}}",
Desc="Apply '''1''' {{Stat|Haze}}"
Desc="Apply '''1''' {{Stat|Haze}}",
}
}
cards["Chungoon"] = {
cards["Chungoon"] = {
Name = "Chungoon",
Name="Chungoon",
Types={Enemy=true},
Types={Enemy=true},
Health=6,
Health=6,
Attack=1,
Attack=1,
Counter=3,
Counter=3,
Desc="When hit, gain '''+1''' {{Stat|Attack}}"
Desc="When hit, gain '''+1''' {{Stat|Attack}}",
}
}
cards["Conker"] = {
cards["Conker"] = {
Name = "Conker",
Name="Conker",
Types={Enemy=true},
Types={Enemy=true},
Health=2,
Health=2,
Line 1,452: Line 1,512:
Counter=5,
Counter=5,
Other="10 {{stat|Shell}}",
Other="10 {{stat|Shell}}",
Desc="Deal additional damage equal to {{Stat|Shell}}"
Desc="Deal additional damage equal to {{Stat|Shell}}",
}
}
cards["Earth Berry"] = {
cards["Earth Berry"] = {
Name = "Earth Berry",
Name="Earth Berry",
Types={Enemy=true},
Types={Enemy=true},
Health=6,
Health=6,
Attack=0,
Attack=0,
Counter=3,
Counter=3,
Desc="Deal damage equal to {{Stat|Health}}"
Desc="Deal damage equal to {{Stat|Health}}",
}
}
cards["Frostinger"] = {
cards["Frostinger"] = {
Name = "Frostinger",
Name="Frostinger",
Types={Enemy=true},
Types={Enemy=true},
Health=8,
Health=8,
Attack=1,
Attack=1,
Counter=3,
Counter=3,
Desc="Apply '''1''' {{Stat|Frost}}"
Desc="Apply '''1''' {{Stat|Frost}}",
}
}
cards["Gobbler"] = {
cards["Gobbler"] = {
Name = "Gobbler",
Name="Gobbler",
Types={Enemy=true},
Types={Enemy=true},
Health=7,
Health=7,
Attack=1,
Attack=1,
Counter=3,
Counter=3,
Desc="When an ally is killed, gain their {{Stat|Attack}}"
Desc="When an ally is killed, gain their {{Stat|Attack}}",
}
}
cards["Gobling"] = {
cards["Gobling"] = {
Name = "Gobling",
Name="Gobling",
Types={Enemy=true},
Types={Enemy=true},
Health=6,
Health=6,
Counter=4,
Counter=4,
Desc="Escape from the battle<br>Drop '''4''' {{Bling}} when hit"
Desc="Escape from the battle<br>Drop '''4''' {{Bling}} when hit",
}
}
cards["Gogong"] = {
cards["Gogong"] = {
Name = "Gogong",
Name="Gogong",
Types={Enemy=true},
Types={Enemy=true},
Health=5,
Health=5,
Attack=2,
Attack=2,
Desc="{{Keyword|Smackback}}"
Desc="{{Keyword|Smackback}}",
}
}
cards["Gok"] = {
cards["Gok"] = {
Name = "Gok",
Name="Gok",
Types={Enemy=true},
Types={Enemy=true},
Health=18,
Health=18,
Attack=5,
Attack=5,
Counter=5,
Counter=5,
Desc="When hit, apply '''1''' {{Stat|Demonize}} to the attacker"
Desc="When hit, apply '''1''' {{Stat|Demonize}} to the attacker",
}
}
cards["Grink"] = {
cards["Grink"] = {
Name = "Grink",
Name="Grink",
Types={Enemy=true},
Types={Enemy=true},
Health=8,
Health=8,
Attack=1,
Attack=1,
Counter=2,
Counter=2,
Desc="Apply '''2''' {{Stat|Frost}}"
Desc="Apply '''2''' {{Stat|Frost}}",
}
}
cards["Grizzle"] = {
cards["Grizzle"] = {
Name = "Grizzle",
Name="Grizzle",
Types={Enemy=true},
Types={Enemy=true},
Health=16,
Health=16,
Line 1,515: Line 1,575:
Counter=5,
Counter=5,
Other="{{Stat|Resist Snow}}",
Other="{{Stat|Resist Snow}}",
Desc="Apply '''3''' {{Stat|Snow}}"
Desc="Apply '''3''' {{Stat|Snow}}",
}
}
cards["Grog"] = {
cards["Grog"] = {
Name = "Grog",
Name="Grog",
Types={Enemy=true},
Types={Enemy=true},
Health=12,
Health=12,
Attack=6,
Attack=6,
Counter=8,
Counter=8,
Desc="When hit, count down {{Stat|Counter}} by '''1'''"
Desc="When hit, count down {{Stat|Counter}} by '''1'''",
}
}
cards["Gromble"] = {
cards["Gromble"] = {
Name = "Gromble",
Name="Gromble",
Types={Enemy=true},
Types={Enemy=true},
Health=12,
Health=12,
Line 1,533: Line 1,593:
}
}
cards["Grouchy"] = {
cards["Grouchy"] = {
Name = "Grouchy",
Name="Grouchy",
Types={Enemy=true},
Types={Enemy=true},
Health=5,
Health=5,
Attack=2,
Attack=2,
Counter=4,
Counter=4,
Desc=" While damaged, {{Stat|Attack}} is increased by '''2'''"
Desc=" While damaged, {{Stat|Attack}} is increased by '''2'''",
}
}
cards["Grumps"] = {
cards["Grumps"] = {
Name = "Grumps",
Name="Grumps",
Types={Enemy=true},
Types={Enemy=true},
Health=9,
Health=9,
Attack=10,
Attack=10,
Counter=8,
Counter=8,
Desc="When hit, reduce the attacker's {{Stat|Attack}} by '''1'''"
Desc="When hit, reduce the attacker's {{Stat|Attack}} by '''1'''",
}
}
cards["Hog"] = {
cards["Hog"] = {
Name = "Hog",
Name="Hog",
Types={Enemy=true},
Types={Enemy=true},
Health=1,
Health=1,
Attack=1,
Attack=1,
Counter=2,
Counter=2,
Desc="{{Keyword|Wild}}"
Desc="{{Keyword|Wild}}",
}
}
cards["Jab Joat"] = {
cards["Jab Joat"] = {
Name = "Jab Joat",
Name="Jab Joat",
Types={Enemy=true},
Types={Enemy=true},
Health=10,
Health=10,
Line 1,565: Line 1,625:
}
}
cards["Krab"] = {
cards["Krab"] = {
Name = "Krab",
Name="Krab",
Types={Enemy=true},
Types={Enemy=true},
Health=5,
Health=5,
Line 1,573: Line 1,633:
}
}
cards["Krawler"] = {
cards["Krawler"] = {
Name = "Krawler",
Name="Krawler",
Types={Enemy=true},
Types={Enemy=true},
Health=10,
Health=10,
Attack=4,
Attack=4,
Counter=3,
Counter=3,
Desc="When hit, apply '''2''' {{Stat|Block}} to a random ally"
Desc="When hit, apply '''2''' {{Stat|Block}} to a random ally",
}
}
cards["Makoko"] = {
cards["Makoko"] = {
Name = "Makoko",
Name="Makoko",
Types={Enemy=true},
Types={Enemy=true},
Health=8,
Health=8,
Attack=0,
Attack=0,
Counter=1,
Counter=1,
Desc="Gain '''+1''' {{Stat|Attack}}"
Desc="Gain '''+1''' {{Stat|Attack}}",
}
}
cards["Marrow"] = {
cards["Marrow"] = {
Name = "Marrow",
Name="Marrow",
Types={Enemy=true},
Types={Enemy=true},
Health=14,
Health=14,
Attack=2,
Attack=2,
Counter=4,
Counter=4,
Desc="While active, add '''2''' {{Stat|Teeth}} to all allies"
Desc="While active, add '''2''' {{Stat|Teeth}} to all allies",
}
}
cards["Minimoko"] = {
cards["Minimoko"] = {
Name = "Minimoko",
Name="Minimoko",
Types={Enemy=true},
Types={Enemy=true},
Health=6,
Health=6,
Attack=1,
Attack=1,
Counter=2,
Counter=2,
Desc="Gain '''+1''' {{Stat|Attack}}"
Desc="Gain '''+1''' {{Stat|Attack}}",
}
}
cards["Naked Gnome (Enemy)"] = {
cards["Naked Gnome (Enemy)"] = {
Name = "Naked Gnome",
Name="Naked Gnome",
Image = "Naked Gnome",
Image="Naked Gnome",
Link = "Naked Gnome",
Link="Naked Gnome",
Types={Enemy=true},
Types={Enemy=true},
Health=1,
Health=1,
Desc="<span style=\"color:grey\"> ''Does absolutely nothing...'' </span>"
Desc="<span style=\"color:grey\"> ''Does absolutely nothing...'' </span>",
}
}
cards["Ooba Bear"] = {
cards["Ooba Bear"] = {
Name = "Ooba Bear",
Name="Ooba Bear",
Types={Enemy=true},
Types={Enemy=true},
Health=6,
Health=6,
Attack=4,
Attack=4,
Counter=3,
Counter=3,
Desc="When hit, apply '''2''' {{Stat|Snow}} to the attacker"
Desc="When hit, apply '''2''' {{Stat|Snow}} to the attacker",
}
}
cards["Paw Paw"] = {
cards["Paw Paw"] = {
Name = "Paw Paw",
Name="Paw Paw",
Types={Enemy=true},
Types={Enemy=true},
Health=10,
Health=10,
Attack=1,
Attack=1,
Counter=3,
Counter=3,
Desc="When hit, gain '''2''' {{Stat|Teeth}}"
Desc="When hit, gain '''2''' {{Stat|Teeth}}",
}
}
cards["Pecan"] = {
cards["Pecan"] = {
Name = "Pecan",
Name="Pecan",
Types={Enemy=true},
Types={Enemy=true},
Health=2,
Health=2,
Line 1,635: Line 1,695:
Counter=4,
Counter=4,
Other="6 {{stat|Shell}}",
Other="6 {{stat|Shell}}",
Desc="Gain '''2''' {{Stat|Shell}}"
Desc="Gain '''2''' {{Stat|Shell}}",
}
}
cards["Pengoon"] = {
cards["Pengoon"] = {
Name = "Pengoon",
Name="Pengoon",
Types={Enemy=true},
Types={Enemy=true},
Health=2,
Health=2,
Line 1,645: Line 1,705:
}
}
cards["Pepper Witch"] = {
cards["Pepper Witch"] = {
Name = "Pepper Witch",
Name="Pepper Witch",
Types={Enemy=true},
Types={Enemy=true},
Health=8,
Health=8,
Attack=1,
Attack=1,
Counter=3,
Counter=3,
Desc="When hit, apply '''2''' {{Stat|Spice}} to allies in the row"
Desc="When hit, apply '''2''' {{Stat|Spice}} to allies in the row",
}
}
cards["Plum"] = {
cards["Plum"] = {
Name = "Plum",
Name="Plum",
Types={Enemy=true},
Types={Enemy=true},
Health=15,
Health=15,
Attack=2,
Attack=2,
Counter=3,
Counter=3,
Desc="Restore '''4''' {{Stat|Health}} to all allies"
Desc="Restore '''4''' {{Stat|Health}} to all allies",
}
}
cards["Popshroom"] = {
cards["Popshroom"] = {
Name = "Popshroom",
Name="Popshroom",
Types={Enemy=true},
Types={Enemy=true},
Health=6,
Health=6,
Attack=0,
Attack=0,
Counter=4,
Counter=4,
Desc="Apply '''4''' {{Stat|Shroom}}<br>Destroy self"
Desc="Apply '''4''' {{Stat|Shroom}}<br>Destroy self",
}
}
cards["Porkypine"] = {
cards["Porkypine"] = {
Name = "Porkypine",
Name="Porkypine",
Types={Enemy=true},
Types={Enemy=true},
Health=6,
Health=6,
Attack=2,
Attack=2,
Counter=4,
Counter=4,
Desc="{{Keyword|Barrage}}"
Desc="{{Keyword|Barrage}}",
}
}
cards["Prickle"] = {
cards["Prickle"] = {
Name = "Prickle",
Name="Prickle",
Types={Enemy=true},
Types={Enemy=true},
Health=5,
Health=5,
Counter=3,
Counter=3,
Other="2 {{Stat|Teeth}}",
Other="2 {{Stat|Teeth}}",
Desc="Gain '''2''' {{Stat|Teeth}}"
Desc="Gain '''2''' {{Stat|Teeth}}",
}
}
cards["Puffball"] = {
cards["Puffball"] = {
Name = "Puffball",
Name="Puffball",
Types={Enemy=true},
Types={Enemy=true},
Health=2,
Health=2,
Attack=0,
Attack=0,
Desc="Apply '''2''' {{Stat|Shroom}}<br>Trigger against the target when an ally attacks"
Desc="Apply '''2''' {{Stat|Shroom}}<br>Trigger against the target when an ally attacks",
}
}
cards["Pygmy"] = {
cards["Pygmy"] = {
Name = "Pygmy",
Name="Pygmy",
Types={Enemy=true},
Types={Enemy=true},
Health=5,
Health=5,
Attack=0,
Attack=0,
Counter=2,
Counter=2,
Desc="Apply '''1''' {{Stat|Demonize}}<br>{{Keyword|Barrage}}"
Desc="Apply '''1''' {{Stat|Demonize}}<br>{{Keyword|Barrage}}",
}
}
cards["Rockhog"] = {
cards["Rockhog"] = {
Name = "Rockhog",
Name="Rockhog",
Types={Enemy=true},
Types={Enemy=true},
Health=7,
Health=7,
Attack=4,
Attack=4,
Counter=6,
Counter=6,
Desc="While active, add '''x1''' {{Stat|Frenzy}} to all allies"
Desc="While active, add '''x1''' {{Stat|Frenzy}} to all allies",
}
}
cards["Shell Witch"] = {
cards["Shell Witch"] = {
Name = "Shell Witch",
Name="Shell Witch",
Types={Enemy=true},
Types={Enemy=true},
Health=6,
Health=6,
Attack=2,
Attack=2,
Counter=3,
Counter=3,
Desc="Apply '''2''' {{Stat|Shell}} to all allies"
Desc="Apply '''2''' {{Stat|Shell}} to all allies",
}
}
cards["Shroom Gobbler"] = {
cards["Shroom Gobbler"] = {
Name = "Shroom Gobbler",
Name="Shroom Gobbler",
Types={Enemy=true},
Types={Enemy=true},
Health=12,
Health=12,
Attack=2,
Attack=2,
Counter=5,
Counter=5,
Desc="Whenever anything takes damage from {{Stat|Shroom}}, gain '''+1''' {{Stat|Attack}}"
Desc="Whenever anything takes damage from {{Stat|Shroom}}, gain '''+1''' {{Stat|Attack}}",
}
}
cards["Shrootles"] = {
cards["Shrootles"] = {
Name = "Shrootles",
Name="Shrootles",
Types={Enemy=true},
Types={Enemy=true},
Health=8,
Health=8,
Line 1,730: Line 1,790:
Counter=3,
Counter=3,
Other="x3 {{Stat|Frenzy}}",
Other="x3 {{Stat|Frenzy}}",
Desc="Apply '''1''' {{Stat|Shroom}}<br>{{Keyword|Aimless}}"
Desc="Apply '''1''' {{Stat|Shroom}}<br>{{Keyword|Aimless}}",
}
}
cards["Smog"] = {
cards["Smog"] = {
Name = "Smog",
Name="Smog",
Types={Enemy=true},
Types={Enemy=true},
Health=10,
Health=10,
Attack=5,
Attack=5,
Counter=6,
Counter=6,
Desc="While active, add {{Keyword|Aimless}} to all enemies"
Desc="While active, add {{Keyword|Aimless}} to all enemies",
}
}
cards["Snow Gobbler"] = {
cards["Snow Gobbler"] = {
Name = "Snow Gobbler",
Name="Snow Gobbler",
Types={Enemy=true},
Types={Enemy=true},
Health=8,
Health=8,
Attack=1,
Attack=1,
Counter=5,
Counter=5,
Desc="Whenever anything is {{Stat|Snow}}'d, gain '''+2''' {{Stat|Attack}}"
Desc="Whenever anything is {{Stat|Snow}}'d, gain '''+2''' {{Stat|Attack}}",
}
}
cards["Snowbirb"] = {
cards["Snowbirb"] = {
Name = "Snowbirb",
Name="Snowbirb",
Types={Enemy=true},
Types={Enemy=true},
Health=4,
Health=4,
Attack=1,
Attack=1,
Counter=3,
Counter=3,
Desc="Apply '''4''' {{Stat|Snow}}<br>{{Keyword|Longshot}}"
Desc="Apply '''4''' {{Stat|Snow}}<br>{{Keyword|Longshot}}",
}
}
cards["Snowbo"] = {
cards["Snowbo"] = {
Name = "Snowbo",
Name="Snowbo",
Types={Enemy=true},
Types={Enemy=true},
Health=4,
Health=4,
Attack=1,
Attack=1,
Counter=2,
Counter=2,
Desc="{{Keyword|Aimless}}"
Desc="{{Keyword|Aimless}}",
}
}
cards["Spuncher"] = {
cards["Spuncher"] = {
Name = "Spuncher",
Name="Spuncher",
Types={Enemy=true},
Types={Enemy=true},
Health=15,
Health=15,
Line 1,772: Line 1,832:
}
}
cards["Tentickle"] = {
cards["Tentickle"] = {
Name = "Tentickle",
Name="Tentickle",
Types={Enemy=true},
Types={Enemy=true},
Health=8,
Health=8,
Attack=5,
Attack=5,
Counter=5,
Counter=5,
Desc="When hit, apply '''3''' {{Stat|Ink}} to the attacker"
Desc="When hit, apply '''3''' {{Stat|Ink}} to the attacker",
}
}
cards["Waddlegoons"] = {
cards["Waddlegoons"] = {
Name = "Waddlegoons",
Name="Waddlegoons",
Types={Enemy=true},
Types={Enemy=true},
Health=9,
Health=9,
Line 1,788: Line 1,848:
}
}
cards["Warthog"] = {
cards["Warthog"] = {
Name = "Warthog",
Name="Warthog",
Types={Enemy=true},
Types={Enemy=true},
Health=18,
Health=18,
Attack=5,
Attack=5,
Counter=5,
Counter=5,
Desc="{{Keyword|Wild}}<br>{{Keyword|Smackback}}"
Desc="{{Keyword|Wild}}<br>{{Keyword|Smackback}}",
}
}
cards["Wild Snoolf"] = {
cards["Wild Snoolf"] = {
Name = "Wild Snoolf",
Name="Wild Snoolf",
Types={Enemy=true},
Types={Enemy=true},
Health=4,
Health=4,
Attack=1,
Attack=1,
Counter=3,
Counter=3,
Desc="Apply '''2''' {{Stat|Snow}}"
Desc="Apply '''2''' {{Stat|Snow}}",
}
}
cards["Willow"] = {
cards["Willow"] = {
Name = "Willow",
Name="Willow",
Types={Enemy=true},
Types={Enemy=true},
Health=16,
Health=16,
Attack=0,
Attack=0,
Counter=5,
Counter=5,
Desc="Apply '''5''' {{Stat|Overburn}}"
Desc="Apply '''5''' {{Stat|Overburn}}",
}
}
cards["Winter Worm"] = {
cards["Winter Worm"] = {
Name = "Winter Worm",
Name="Winter Worm",
Types={Enemy=true},
Types={Enemy=true},
Health=10,
Health=10,
Attack=8,
Attack=8,
Counter=6,
Counter=6,
Desc="When hit, reduce {{Stat|Attack}} by '''1'''"
Desc="When hit, reduce {{Stat|Attack}} by '''1'''",
}
}
cards["Woolly Drek"] = {
cards["Woolly Drek"] = {
Name = "Woolly Drek",
Name="Woolly Drek",
Types={Enemy=true},
Types={Enemy=true},
Health=28,
Health=28,
Line 1,826: Line 1,886:
Counter=5,
Counter=5,
Other="{{Stat|Resist Snow}}",
Other="{{Stat|Resist Snow}}",
Desc="Eat and {{Keyword|Absorb}} a random ally"
Desc="Eat and {{Keyword|Absorb}} a random ally",
}
}


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


--Minibosses
--Minibosses
cards["Big Peng"] = {
cards["Big Peng"] = {
Name = "Big Peng",
Name="Big Peng",
Types={Miniboss=true},
Types={Miniboss=true},
Health=10,
Health=10,
Attack=1,
Attack=1,
Counter=4,
Counter=4,
Desc="Gain '''+1''' {{Stat|Attack}} when an ally is killed"
Desc="Gain '''+1''' {{Stat|Attack}} when an ally is killed",
}
}
cards["Bigloo"] = {
cards["Bigloo"] = {
Name = "Bigloo",
Name="Bigloo",
Types={Miniboss=true},
Types={Miniboss=true},
Health=30,
Health=30,
Line 1,880: Line 1,940:
Counter=4,
Counter=4,
Other="{{Stat|Resist Snow}}",
Other="{{Stat|Resist Snow}}",
Desc="Apply '''2''' {{Stat|Snow}}<br>{{Keyword|Barrage}}"
Desc="Apply '''2''' {{Stat|Snow}}<br>{{Keyword|Barrage}}",
}
}
cards["Bolgo"] = {
cards["Bolgo"] = {
Name = "Bolgo",
Name="Bolgo",
Types={Miniboss=true},
Types={Miniboss=true},
Health=20,
Health=20,
Line 1,889: Line 1,949:
Counter=3,
Counter=3,
Other="10 {{Stat|Shell}}",
Other="10 {{Stat|Shell}}",
Desc="When hit, gain '''+1''' {{Stat|Attack}}"
Desc="When hit, gain '''+1''' {{Stat|Attack}}",
}
}
cards["Bumbo"] = {
cards["Bumbo"] = {
Name = "Bumbo",
Name="Bumbo",
Types={Miniboss=true},
Types={Miniboss=true},
Health=15,
Health=15,
Line 1,898: Line 1,958:
Counter=4,
Counter=4,
Other="{{Stat|Resist Snow}}",
Other="{{Stat|Resist Snow}}",
Desc="Apply '''2''' {{Stat|Snow}}<br>{{Keyword|Barrage}}"
Desc="Apply '''2''' {{Stat|Snow}}<br>{{Keyword|Barrage}}",
}
}
cards["King Moko"] = {
cards["King Moko"] = {
Name = "King Moko",
Name="King Moko",
Types={Miniboss=true},
Types={Miniboss=true},
Health=80,
Health=80,
Line 1,907: Line 1,967:
Counter=7,
Counter=7,
Other="x5 {{Stat|Frenzy}}<br>{{Stat|Resist Snow}}",
Other="x5 {{Stat|Frenzy}}<br>{{Stat|Resist Snow}}",
Desc="When hit, apply '''3''' {{Stat|Spice}} to everyone in the battle"
Desc="When hit, apply '''3''' {{Stat|Spice}} to everyone in the battle",
}
}
cards["Maw Jaw"] = {
cards["Maw Jaw"] = {
Name = "Maw Jaw",
Name="Maw Jaw",
Types={Miniboss=true},
Types={Miniboss=true},
Health=30,
Health=30,
Attack=5,
Attack=5,
Counter=4,
Counter=4,
Desc="Trigger when hit"
Desc="Trigger when hit",
}
}
cards["Muttonhead"] = {
cards["Muttonhead"] = {
Name = "Muttonhead",
Name="Muttonhead",
Types={Miniboss=true},
Types={Miniboss=true},
Health=30,
Health=30,
Attack=4,
Attack=4,
Counter=3,
Counter=3,
Desc="When {{Stat|Snow}}'d, apply '''1''' {{Stat|Demonize}} to all enemies"
Desc="When {{Stat|Snow}}'d, apply '''1''' {{Stat|Demonize}} to all enemies",
}
}
cards["Numskull"] = {
cards["Numskull"] = {
Name = "Numskull",
Name="Numskull",
Types={Miniboss=true},
Types={Miniboss=true},
Health=20,
Health=20,
Line 1,932: Line 1,992:
Counter=4,
Counter=4,
Other="12 {{Stat|Block}}<br>{{Stat|Resist Snow}}",
Other="12 {{Stat|Block}}<br>{{Stat|Resist Snow}}",
Desc="While active, add {{Keyword|Hogheaded}} to all enemies"
Desc="While active, add {{Keyword|Hogheaded}} to all enemies",
}
}
cards["Queen Globerry"] = {
cards["Queen Globerry"] = {
Name = "Queen Globerry",
Name="Queen Globerry",
Types={Miniboss=true},
Types={Miniboss=true},
Health=15,
Health=15,
Line 1,941: Line 2,001:
Counter=5,
Counter=5,
Other="{{Stat|Resist Snow}}",
Other="{{Stat|Resist Snow}}",
Desc="Deal additional damage equal to {{Stat|Health}}"
Desc="Deal additional damage equal to {{Stat|Health}}",
}
}
cards["Razor"] = {
cards["Razor"] = {
Name = "Razor",
Name="Razor",
Types={Miniboss=true},
Types={Miniboss=true},
Health=50,
Health=50,
Line 1,950: Line 2,010:
Counter=3,
Counter=3,
Other="{{Stat|Resist Snow}}",
Other="{{Stat|Resist Snow}}",
Desc="{{Keyword|Wild}}"
Desc="{{Keyword|Wild}}",
}
}
cards["The Ringer"] = {
cards["The Ringer"] = {
Name = "The Ringer",
Name="The Ringer",
Types={Miniboss=true},
Types={Miniboss=true},
Health=15,
Health=15,
Line 1,959: Line 2,019:
Counter=5,
Counter=5,
Other="{{Stat|Resist Snow}}",
Other="{{Stat|Resist Snow}}",
Desc="When hit, apply '''2''' {{Stat|Frost}} to a random enemy"
Desc="When hit, apply '''2''' {{Stat|Frost}} to a random enemy",
}
}
cards["The Snow Knight"] = {
cards["The Snow Knight"] = {
Name = "The Snow Knight",
Name="The Snow Knight",
Types={Miniboss=true},
Types={Miniboss=true},
Health=10,
Health=10,
Attack=1,
Attack=1,
Counter=2,
Counter=2,
Desc=" Whenever anything is {{Stat|Snow}}'d, gain '''+1''' {{Stat|Attack}}"
Desc=" Whenever anything is {{Stat|Snow}}'d, gain '''+1''' {{Stat|Attack}}",
}
}
cards["Veiled Lady"] = {
cards["Veiled Lady"] = {
Name = "Veiled Lady",
Name="Veiled Lady",
Types={Miniboss=true},
Types={Miniboss=true},
Health=12,
Health=12,
Line 1,976: Line 2,036:
Counter=3,
Counter=3,
Other="{{Stat|Resist Snow}}",
Other="{{Stat|Resist Snow}}",
Desc=" Apply '''3''' {{Stat|Shroom}}"
Desc=" Apply '''3''' {{Stat|Shroom}}",
}
}


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



Revision as of 00:00, 5 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 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