Module:Cards/data: Difference between revisions

no edit summary
m (Pecan)
No edit summary
 
(44 intermediate revisions by 5 users not shown)
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,
Attack=3,
Attack=3,
Counter=5,
Counter=5,
Desc="Restore '''3''' {{Stat|Health}} to all allies"
Desc="Restore '''3''' {{Stat|Health}} to all allies",
Challenge="Recall '''3''' Companions",
ChallengeOrder=1,
}
 
cards["Binku"]= {
Name="Binku",
Types={Pet=true, Companion=true},
Health=3,
Attack=2,
Counter=4,
Desc="Apply '''3''' {{Stat|Ink}}",
Challenge="Hit the Enemy Wave Bell '''5''' times",
ChallengeOrder=5
}
}
cards["Lil Gazi"] = {
cards["Lil Gazi"] = {
Name = "Lil Gazi",
Name="Lil' Gazi",
Types={Pet=true, Companion=true},
Types={Pet=true, Companion=true},
Health=3,
Health=3,
Attack=4,
Attack=4,
Counter=4,
Counter=4,
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",
ChallengeOrder=6,
UniqueName="Lil Gazi"
}
}
cards["Loki"] = {
cards["Loki"] = {
Name = "Loki",
Name="Loki",
Types={Pet=true, Companion=true},
Types={Pet=true, Companion=true},
Health=5,
Health=5,
Attack=2,
Attack=3,
Counter=3,
Counter=3,
Desc="Apply '''1''' {{Stat|Demonize}}<br>{{Keyword|Aimless}}"
Desc="Apply '''1''' {{Stat|Demonize}}<br>{{Keyword|Aimless}}",
Challenge="Kill '''3''' {{Stat|Demonize|Demonized}} enemies",
ChallengeOrder=2,
}
}
cards["Sneezle"] = {
cards["Sneezle"] = {
Name = "Sneezle",
Name="Sneezle",
Types={Pet=true, Companion=true},
Types={Pet=true, Companion=true},
Health=6,
Health=6,
Attack=2,
Attack=2,
Counter=3,
Counter=3,
Desc="{{Keyword|Draw}} '''1''' when hit"
Desc="{{Keyword|Draw}} '''1''' when hit",
Challenge="Buy '''5''' discounted [[Items]]",
ChallengeOrder=3,
}
}
cards["Snoof"] = {
cards["Snoof"] = {
Name = "Snoof",
Name="Snoof",
Types={Pet=true, Companion=true},
Types={Pet=true, Companion=true},
Health=3,
Health=3,
Attack=3,
Attack=3,
Counter=3,
Counter=3,
Desc="Apply '''1''' {{Stat|Snow}}"
Desc="Apply '''1''' {{Stat|Snow}}",
Challenge="''Unlocked by default.''",
ChallengeOrder=0,
}
}
cards["Spike"] = {
cards["Spike"] = {
Name = "Spike",
Name="Spike",
Types={Pet=true, Companion=true},
Types={Pet=true, Companion=true},
Health=8,
Health=7,
Other="2 {{Stat|Teeth}}",
Other="2 {{Stat|Teeth}}",
Desc="{{Keyword|Hogheaded}}"
Desc="{{Keyword|Hogheaded}}",
Challenge="Kill '''10''' enemies with {{Stat|Teeth}}",
ChallengeOrder=4,
}
}


--Frozen Travelers
--Frozen Travellers
cards["Alloy"] = {
cards["Alloy"] = {
Name = "Alloy",
Name="Alloy",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=12,
Health=12,
Attack=6,
Attack=6,
Line 77: Line 160:
Other="1 {{Stat|Bom}}",
Other="1 {{Stat|Bom}}",
Desc="Apply '''1''' {{Stat|Scrap}} to a random ally",
Desc="Apply '''1''' {{Stat|Scrap}} to a random ally",
Tribes={"Clunkmasters"}
Tribes={"Clunkmasters"},
}
 
cards["The Baker"] = {
Name="The Baker",
Types={Companion=true, HotSpring=true, NonPetCompanion=true},
Health=9,
Counter=4,
Desc="Add '''1''' {{Card|Skull Muffin}} to your hand<br>{{Keyword|Spark}}",
Tribes={"Shademancers"},
Challenge="Summon '''50''' allies",
ChallengeOrder=4,
}
}
cards["Berry Sis"] = {
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},
Types={Companion=true, HotSpring=true, NonPetCompanion=true},
Health=15,
Health=16,
Attack=7,
Attack=7,
Counter=4,
Counter=4,
Desc="Deal '''5''' damage to self and allies in the row<br>{{Keyword|Barrage}}",
Desc="Deal '''5''' damage to self and allies in the row<br>{{Keyword|Barrage}}",
Tribes={"All"}
Tribes={"All"},
Challenge="Deal '''10''' damage to your own team",
ChallengeOrder=1,
}
}
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,
Counter=3,
Counter=3,
Other="3 {{Stat|Shell}}",
Other="2 {{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=7,
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=2,
Counter=3,
Counter=3,
Desc="Apply '''1''' {{Stat|Demonize}}",
Desc="When an enemy is hit with an [[Items|Item]], apply '''1''' {{Stat|Demonize}} to them",
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 193: Line 290:
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["Fulbert"] = {
Name="Fulbert",
Types={Companion=true, NonPetCompanion=true},
Health= 4,
Attack= 1,
Counter= 3,
Desc="When {{Stat|Spice|Spiced}} or {{Stat|Shell|Shelled}}, apply equal {{Stat|Shroom}} to a random enemy",
Tribes={"Snowdwellers"},
}
cards["Fungun"] = {
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["Gojiber"] = {
Name="Gojiber",
Types={Companion=true, NonPetCompanion=true},
Health= 7,
Attack= 0,
Other="{{Stat|Reaction}}",
Desc="Deal additional damage equal to {{Stat|Health}}<br>{{Keyword|Smackback}}",
Tribes={"All"},
}
}
cards["Groff"] = {
cards["Groff"] = {
Name = "Groff",
Name="Groff",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=5,
Health=6,
Attack=5,
Attack=5,
Other="x2 {{Stat|Frenzy}}",
Other="{{Stat|Reaction}}, 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},
Types={Companion=true, NonPetCompanion=true},
Health=13,
Health=13,
Attack=1,
Attack=1,
Counter=3,
Counter=3,
Desc="Also hits ally behind<br>{{Keyword|Barrage}}",
Desc="Also hits ally behind<br>{{Keyword|Barrage}}",
Tribes={"All"}
Tribes={"All"},
}
}
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 '''2''' {{Stat|Shell}} to ally behind",
Tribes={"Snowdwellers"}
Tribes={"Snowdwellers"},
}
 
cards["Knuckles"] = {
Name="Knuckles",
Types={Companion=true, NonPetCompanion=true},
Health= 8,
Attack= 4,
Other="{{Stat|Reaction}}",
Desc="<span style=\"color:brown\">Trigger when hit</span>",
Tribes={"Clunkmasters"},
}
}
cards["Kreggo"] = {
cards["Kreggo"] = {
Name = "Kreggo",
Name="Kreggo",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, NonPetCompanion=true},
Health=7,
Health=7,
Attack=0,
Attack=2,
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"},
UniqueName="Lil Berry"
}
 
cards["Lupa"] = {
Name="Lupa",
Types={Companion=true, HotSpring=true, NonPetCompanion=true},
Health= 4,
Attack= 1,
Counter= 5,
Desc="When hit, boost the effects of a random ally and enemy by '''1'''",
Tribes={"All"},
Challenge="Kill '''20''' [[Enemies|enemies]] with {{Keyword|Smackback}}",
ChallengeOrder=3,
}
 
cards["Mama Tinkerson"] = {
Name="Mama Tinkerson",
Types={Companion=true, NonPetCompanion=true},
Health= 5,
Attack= 3,
Counter= 4,
Desc="While active, add '''x2''' {{Stat|Frenzy}} to all [[Clunkers|Clunker]] allies",
Tribes={"Clunkmasters"},
}
}
cards["Mini Mika"] = {
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"},
Gold="Doesn't drop gold"
}
 
cards["Needle"] = {
Name="Needle",
Types={Companion=true, NonPetCompanion=true},
Health= 7,
Attack= 3,
Counter= 4,
Desc="Destroy all {{Card|Junk}} in hand and {{Keyword|Draw}} '''1''' for each",
Tribes={"Clunkmasters"},
}
}
cards["Nom & Stompy"] = {
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["Nova"] = {
Name="Nova",
Types={Companion=true, HotSpring=true, NonPetCompanion=true},
Health= 3,
Attack= 3,
Counter= 12,
Other= "{{Stat|Reaction}}, 1 {{Stat|Block}}",
Desc="Hits all enemies<br><span style=\"color:brown\">Trigger when self or ally loses {{Stat|Block}}</span>",
Tribes={"All"},
Challenge="Achieve a '''4x''' kill combo",
ChallengeOrder=2,
}
cards["Pimento"] = {
Name="Pimento",
Types={Companion=true, NonPetCompanion=true},
Health= 7,
Attack= 2,
Counter= 5,
Desc="Retains {{Stat|Spice}}",
Tribes={"Snowdwellers"},
}
cards["Pootie"] = {
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=6,
Counter=5,
Counter=4,
Desc="Apply '''6''' {{Stat|Spice}} to ally ahead",
Desc="Apply '''4''' {{Stat|Spice}} to ally behind",
Tribes={"Snowdwellers"}
Tribes={"Snowdwellers"},
}
 
cards["Roibos"] = {
Name="Roibos",
Types={Companion=true, NonPetCompanion=true},
Health= 7,
Attack= 2,
Counter= 4,
Desc="When hit, add '''+1''' {{Stat|Attack}} to ally with the lowest {{Stat|Attack}}",
Tribes={"All"},
}
}
cards["Scaven"] = {
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 '''2''' {{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},
Types={Companion=true, NonPetCompanion=true},
Health=5,
Health=5,
Attack=2,
Attack=2,
Counter=4,
Counter=4,
Desc="Apply {{Stat|Snow}} equal to damage dealt",
Desc="Apply {{Stat|Snow}} equal to damage dealt",
Tribes={"All"}
Tribes={"All"},
}
}
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["Spoof"] = {
Name="Spoof",
Types={Companion=true, NonPetCompanion=true},
Health= 2,
Counter= 5,
Desc="Summon a {{Keyword|Bootleg}} copy of a random enemy",
Tribes={"Shademancers"},
}
cards["Taiga"] = {
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=3,
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"},
UniqueName="Tinkerson Jr"
}
}
cards["Tiny Tyko"] = {
cards["Tiny Tyko"] = {
Name = "Tiny Tyko",
Name="Tiny Tyko",
Types={NonPetCompanion=true, Companion=true},
Types={Companion=true, HotSpring=true, NonPetCompanion=true},
Health=2,
Health=2,
Attack=1,
Attack=1,
Line 407: Line 622:
Other="x2 {{Stat|Frenzy}}",
Other="x2 {{Stat|Frenzy}}",
Desc="When hit, gain '''x1''' {{Stat|Frenzy}}",
Desc="When hit, gain '''x1''' {{Stat|Frenzy}}",
Tribes={"Snowdwellers"}
Tribes={"Snowdwellers"},
Challenge="Equip '''10''' [[Charms]]",
ChallengeOrder=0,
}
 
cards["Toaster"] = {
Name="Toaster",
Types={Companion=true, HotSpring=true, NonPetCompanion=true},
Health= 9,
Attack= 3,
Counter= 3,
Other="x2 {{Stat|Frenzy}}",
Desc="While active, add {{Keyword|Consume}} to [[Items]] in your hand",
Tribes={"Clunkmasters"},
Challenge="Add '''10''' {{Stat|Scrap}} to [[Clunkers]]",
ChallengeOrder=5,
}
}
cards["Tusk"] = {
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},
Types={Companion=true, NonPetCompanion=true},
Health=4,
Health=4,
Counter=4,
Counter=4,
Desc="Add '''+2''' {{Stat|Attack}} and '''+2''' {{Stat|Health}} to all {{Keyword|Summoned}} allies",
Desc="Add '''+2''' {{Stat|Attack}} and '''+2''' {{Stat|Health}} to all {{Keyword|Summoned}} allies",
Tribes={"Shademancers"}
Tribes={"Shademancers"},
}
}
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 452: Line 684:
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"},
}
}
cards["Zula"] = {
Name="Zula",
Types={Companion=true, NonPetCompanion=true},
Health= 7,
Attack= 0,
Other="{{Stat|Reaction}}",
Desc="Apply '''2''' {{Stat|Overburn}}<br><span style=\"color:brown\">Trigger when an enemy is killed</span>",
Tribes={"Shademancers"},
}


--Clunkers
--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}}",
Other="{{Stat|Reaction}}",
Tribes={"All"}
Desc="Gain '''4''' {{Bling}}<br><span style=\"color:brown\">Trigger when an enemy is killed</span>",
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>",
Other="{{Stat|Reaction}}",
Tribes={"Clunkmasters"}
Desc="<span style=\"color:brown\">Trigger when [[Junk]] is destroyed</span>",
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>",
Other="{{Stat|Reaction}}",
Tribes={"Clunkmasters"}
Desc="<span style=\"color:brown\">Trigger against anything that is hit with {{Stat|Bom}}</span>",
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 538: Line 784:
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"},
UniqueName="ICGM"
}
}
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},
Types={Clunker=true, InventorsHut=true},
Scrap=1,
Scrap=1,
Attack=3,
Attack=3,
Other="{{Stat|Reaction}}",
Desc="<span style=\"color:brown\">Trigger against anything that is hit with {{Stat|Snow}}</span>",
Desc="<span style=\"color:brown\">Trigger against anything that is hit with {{Stat|Snow}}</span>",
Tribes={"Snowdwellers"}
Tribes={"Snowdwellers"},
Challenge="Add 3 [[Clunkers]] to your deck",
ChallengeOrder=1,
}
}
cards["Krono"] = {
cards["Krono"] = {
Name = "Krono",
Name="Krono",
Types={Clunker=true},
Types={Clunker=true, InventorsHut=true},
Scrap=1,
Scrap=1,
Desc="While active, add '''x1''' {{Stat|Frenzy}} to allies without {{Crown}}",
Desc="While active, add '''x1''' {{Stat|Frenzy}} to allies without {{Crown}}",
Tribes={"All"}
Tribes={"All"},
Challenge="Buy 10 {{Crown}}",
ChallengeOrder=5,
}
}
cards["Mega Mimik"] = {
cards["Mega Mimik"] = {
Name = "Mega Mimik",
Name="Mega Mimik",
Types={Clunker=true, EnemyClunker=true},
Types={InventorsHut=true, Clunker=true, EnemyClunker=true},
Scrap=3,
Scrap=3,
Attack=5,
Attack=5,
Other="{{Stat|Reaction}}",
Desc="<div style=\"color:brown;\">Trigger when an ally in the row attacks</div>Lose '''1''' {{Stat|Scrap}}",
Desc="<div style=\"color:brown;\">Trigger when an ally in the row attacks</div>Lose '''1''' {{Stat|Scrap}}",
Tribes={"All"}
Tribes={"All"},
Challenge="Apply 60 {{Stat|Shell}}",
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,
Other="{{Stat|Reaction}}",
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,
Attack=0,
Attack=0,
Other="x5 {{Stat|Frenzy}}",
Other="{{Stat|Reaction}}, 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 608: Line 864:
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"},
}
}
cards["Zoomlin Nest"] = {
Name="Zoomlin Nest",
Types={Clunker=true},
Scrap= 1,
Desc="While active, allies gain {{Keyword|Zoomlin}} when drawn",
Tribes={"All"},
}


--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["Bonescraper"] = {
Name="Bonescraper",
Types={Item=true, ShopItem=true},
Attack= 5,
Desc="Killing an enemy counts as {{Keyword|Sacrifice|Sacrificing}} an ally",
Tribes={"Shademancers"},
Price=50,
}
}
cards["Broken Vase"] = {
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|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},
Types={InventorsHut=true, Item=true, ShopItem=true},
Attack=1,
Attack=1,
Desc="{{Keyword|Noomlin}}<br>{{Keyword|Yank}}",
Desc="{{Keyword|Noomlin}}<br>{{Keyword|Yank}}",
Tribes={"All"},
Tribes={"All"},
Price=40
Price=40,
Challenge="Kill 20 enemies with [[Items]]",
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",
Types={Item=true},
Types={Item=true},
Desc="Summon [[JunJun]]",
Desc="Summon [[JunJun|Junjun]]",
Tribes={"Shademancers"},
Tribes={"Shademancers"},
Price=30
Price=30,
UniqueName="JunJun Mask"
}
}
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},
Types={InventorsHut=true, Item=true, ShopItem=true},
Desc="Add '''1''' {{Stat|Scrap}}",
Desc="Add '''1''' {{Stat|Scrap}}",
Tribes={"Snowdwellers", "Clunkmasters"},
Tribes={"Snowdwellers"},
Price=40
Price=40,
Challenge="Block 10 hits with [[Clunkers]]",
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},
Attack=2,
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["Skull Muffin"] = {
Name="Skull Muffin",
Types={Item=true, ShopItem=true},
Attack= 0,
Desc="Kill an ally<br>{{Keyword|Zoomlin}}<br>{{Keyword|Consume}}",
Tribes={"Shademancers"},
Price=50,
}
cards["Slapcrackers"] = {
cards["Slapcrackers"] = {
Name = "Slapcrackers",
Name="Slapcrackers",
Types={Item=true, ShopItem=true},
Types={InventorsHut=true, Item=true, ShopItem=true},
Attack=1,
Attack=1,
Other="x4 {{Stat|Frenzy}}",
Other="x4 {{Stat|Frenzy}}",
Desc="{{Keyword|Aimless}}",
Desc="{{Keyword|Aimless}}",
Tribes={"All"},
Tribes={"All"},
Price=50
Price=50,
Challenge="Achieve a 3x kill combo",
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["Snuffer Mask"] = {
Name="Snuffer Mask",
Types={Item=true, ShopItem=true},
Desc="Summon [[Snuffer]]<br>{{Keyword|Consume}}",
Tribes={"Shademancers"},
Price=50,
}
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 {{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,
}
}
cards["Zoomlin Wafers"] = {
Name="Zoomlin Wafers",
Types={Item=true, ShopItem=true},
Desc="Add {{Keyword|Zoomlin}} to all cards in your hand<br>{{Keyword|Consume}}",
Tribes={"All"},
Price=55,
}


--Shades
--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|Sacrifice|Sacrificing}} [[Chikashi]]",
}
}
cards["Chikani"] = {
cards["Chikani"] = {
Name = "Chikani",
Name="Chikani",
Types={Shade=true},
Types={Shade=true},
Health=4,
Health=4,
Attack=4,
Attack=4,
Counter=3,
Counter=3,
Desc="When {{Keyword|Sacrificed}}, summon [[Chikasan]]",
Desc="When {{Keyword|Sacrifice|Sacrificed}}, summon [[Chikasan]]",
SummonCon="{{Keyword|Sacrificing}} [[Chikichi]]"
SummonCon="{{Keyword|Sacrifice|Sacrificing}} [[Chikichi]]",
}
}
cards["Chikasan"] = {
cards["Chikasan"] = {
Name = "Chikasan",
Name="Chikasan",
Types={Shade=true},
Types={Shade=true},
Health=6,
Health=6,
Attack=6,
Attack=6,
Counter=3,
Counter=3,
Desc="When {{Keyword|Sacrificed}}, summon [[Chikashi]]",
Desc="When {{Keyword|Sacrifice|Sacrificed}}, summon [[Chikashi]]",
SummonCon="{{Keyword|Sacrificing}} [[Chikani]]"
SummonCon="{{Keyword|Sacrifice|Sacrificing}} [[Chikani]]",
}
}
cards["Chikashi"] = {
cards["Chikashi"] = {
Name = "Chikashi",
Name="Chikashi",
Types={Shade=true},
Types={Shade=true},
Health=8,
Health=8,
Attack=8,
Attack=8,
Counter=3,
Counter=3,
Desc="When {{Keyword|Sacrificed}}, summon [[Chikagoru]]",
Desc="When {{Keyword|Sacrifice|Sacrificed}}, summon [[Chikagoru]]",
SummonCon="{{Keyword|Sacrificing}} [[Chikasan]]"
SummonCon="{{Keyword|Sacrifice|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,307: Line 1,618:
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,316: Line 1,627:
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",
Types={Shade=true},
Types={Shade=true},
Health=3,
Health=3,
Line 1,325: Line 1,637:
Counter=3,
Counter=3,
Desc="{{Keyword|Aimless}}",
Desc="{{Keyword|Aimless}}",
SummonCon="Using [[JunJun Mask]]"
SummonCon="Using [[JunJun Mask|Junjun Mask]]",
UniqueName="JunJun"
}
}
cards["Leech"] = {
cards["Leech"] = {
Name = "Leech",
Name="Leech",
Types={Shade=true},
Types={Shade=true},
Health=5,
Health=5,
Line 1,334: Line 1,647:
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["Snuffer"] = {
Name="Snuffer",
Types={Shade=true},
Health= 4,
Desc="When {{Keyword|Sacrifice|Sacrificed}}, add '''+1''' {{Stat|Attack}} to all allies and resummon",
SummonCon="Using [[Snuffer Mask]] or by {{Keyword|Sacrifice|Sacrificing}} Snuffer",
}
}
cards["Tigris"] = {
cards["Tigris"] = {
Name = "Tigris",
Name="Tigris",
Types={Shade=true},
Types={Shade=true},
Health=4,
Health=5,
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,
Attack=1,
Attack=1,
Counter=2,
Counter=2,
Gold=2
}
cards["Beeberry"] = {
Name="Beeberry",
Types={Enemy=true},
Health= 2,
Attack= 1,
Counter= 3,
Desc="When destroyed, add '''+1''' {{Stat|Health}} to all allies",
Gold=2
}
}
cards["Berry Witch"] = {
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",
Gold=5
}
}
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}}",
Gold=5
}
cards["Blaze Beetles"] = {
Name="Blaze Beetles",
Types={Enemy=true},
Health= 11,
Attack= 1,
Counter= 3,
Desc="When a card is destroyed, gain '''x1''' {{Stat|Frenzy}}<br>{{Keyword|Barrage}}",
Gold=7
}
}
cards["Bulbhead"] = {
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}}",
Gold=6
}
}
cards["Burster"] = {
cards["Burster"] = {
Name = "Burster",
Name="Burster",
Types={Enemy=true},
Types={Enemy=true},
Health=10,
Health=10,
Line 1,398: Line 1,740:
Counter=4,
Counter=4,
Other="{{Stat|Resist Snow}}",
Other="{{Stat|Resist Snow}}",
Desc="Apply '''1''' {{Stat|Haze}}"
Desc="Apply '''1''' {{Stat|Haze}}",
Gold=7
}
}
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}}",
Gold=5
}
}
cards["Conker"] = {
cards["Conker"] = {
Name = "Conker",
Name="Conker",
Types={Enemy=true},
Types={Enemy=true},
Health=2,
Health=2,
Line 1,415: Line 1,759:
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}}",
Gold=7
}
cards["Dungrok"] = {
Name="Dungrok",
Types={Enemy=true},
Health= 14,
Attack= 4,
Counter= 3,
Other="{{Stat|Resist Snow}}",
Desc="Destroy the rightmost card in your hand",
Gold=7
}
}
cards["Earth Berry"] = {
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 additional damage equal to {{Stat|Health}}",
Gold=5
}
}
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}}",
Gold=6
}
}
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}}",
Gold=2
}
}
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",
Gold="Doesn't drop gold"
}
}
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}}"
Other="{{Stat|Reaction}}",
Desc="{{Keyword|Smackback}}",
Gold=5
}
}
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",
Gold=2
}
}
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}}",
Gold=2
}
}
cards["Grizzle"] = {
cards["Grizzle"] = {
Name = "Grizzle",
Name="Grizzle",
Types={Enemy=true},
Types={Enemy=true},
Health=16,
Health=16,
Line 1,478: Line 1,841:
Counter=5,
Counter=5,
Other="{{Stat|Resist Snow}}",
Other="{{Stat|Resist Snow}}",
Desc="Apply '''3''' {{Stat|Snow}}"
Desc="Apply '''3''' {{Stat|Snow}}",
Gold=7
}
}
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'''",
Gold=3
}
}
cards["Gromble"] = {
cards["Gromble"] = {
Name = "Gromble",
Name="Gromble",
Types={Enemy=true},
Types={Enemy=true},
Health=12,
Health=12,
Attack=2,
Attack=2,
Counter=2,
Counter=2,
Gold=3
}
}
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'''",
Gold=3
}
}
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'''",
Gold=6
}
}
cards["Hog"] = {
cards["Gunk Gobbler"] = {
Name = "Hog",
Name="Gunk Gobbler",
Types={Enemy=true},
Health= 7,
Attack= 0,
Counter= 3,
Desc="When a card is destroyed, gain '''+2''' {{Stat|Attack}}",
Gold=7
}
cards["Gunkback"] = {
Name="Gunkback",
Types={Enemy=true},
Health= 10,
Attack= 4,
Counter= 4,
Other="{{Stat|Resist Snow}}",
Desc="When hit, add [[Gunk Fruit]] to your hand",
Gold=7
}
cards["Hog"] = {
Name="Hog",
Types={Enemy=true},
Types={Enemy=true},
Health=1,
Health=1,
Attack=1,
Attack=1,
Counter=2,
Counter=2,
Desc="{{Keyword|Wild}}"
Desc="{{Keyword|Wild}}",
Gold=2
}
}
cards["Jab Joat"] = {
cards["Jab Joat"] = {
Name = "Jab Joat",
Name="Jab Joat",
Types={Enemy=true},
Types={Enemy=true},
Health=10,
Health=10,
Line 1,526: Line 1,914:
Counter=3,
Counter=3,
Other="x2 {{stat|Frenzy}}",
Other="x2 {{stat|Frenzy}}",
Gold=2
}
}
cards["Krab"] = {
cards["Krab"] = {
Name = "Krab",
Name="Krab",
Types={Enemy=true},
Types={Enemy=true},
Health=5,
Health=5,
Line 1,534: Line 1,923:
Counter=5,
Counter=5,
Other="3 {{Stat|Block}}",
Other="3 {{Stat|Block}}",
Gold=7
}
cards["Kraken"] = {
Name="Kraken",
Types={Enemy=true},
Health= 20,
Attack= 3,
Counter= 4,
Other="{{Stat|Resist Snow}}",
Desc="Hits all enemies",
Gold=6
}
}
cards["Krawler"] = {
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",
Gold=7
}
cards["Lump"] = {
Name="Lump",
Types={Enemy=true},
Health= 2,
Attack= 1,
Counter= 3,
Desc="While active, add '''+1''' {{Stat|Attack}} to all allies",
Gold=2
}
}
cards["Makoko"] = {
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}}",
Gold=2
}
}
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",
Gold=5
}
}
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}}",
Gold=2
}
}
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>",
Gold="Doesn't drop gold",
UniqueName="Naked Gnome (Enemy)"
}
cards["Octako"] = {
Name="Octako",
Types={Enemy=true},
Health= 10,
Attack= 2,
Counter= 3,
Desc="Apply '''2''' {{Stat|Ink}}<br>{{Keyword|Barrage}}",
Gold=4
}
}
cards["Ooba Bear"] = {
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",
Gold=5
}
}
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}}",
Gold=5
}
}
cards["Pecan"] = {
cards["Pecan"] = {
Name = "Pecan",
Name="Pecan",
Types={Enemy=true},
Types={Enemy=true},
Health=2,
Health=2,
Line 1,598: Line 2,024:
Counter=4,
Counter=4,
Other="6 {{stat|Shell}}",
Other="6 {{stat|Shell}}",
Desc="Gain '''2''' {{Stat|Shell}}"
Desc="Gain '''2''' {{Stat|Shell}}",
Gold=7
}
}
cards["Pengoon"] = {
cards["Pengoon"] = {
Name = "Pengoon",
Name="Pengoon",
Types={Enemy=true},
Types={Enemy=true},
Health=2,
Health=2,
Attack=1,
Attack=1,
Counter=2,
Counter=2,
Gold=2
}
}
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",
Gold=2
}
}
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",
Gold=7
}
}
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",
Gold=7
}
}
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}}",
Gold=6
}
}
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}}",
Gold=6
}
}
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"
Other="{{Stat|Reaction}}",
Desc="Apply '''2''' {{Stat|Shroom}}<br><div style=\"color:brown;\">Trigger against the target when an ally attacks</div>",
Gold=5
}
}
cards["Pygmy"] = {
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}}",
Gold=2
}
}
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",
Gold=7
}
}
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",
Gold=5
}
}
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}}",
Gold=6
}
}
cards["Shrootles"] = {
cards["Shrootles"] = {
Name = "Shrootles",
Name="Shrootles",
Types={Enemy=true},
Types={Enemy=true},
Health=8,
Health=8,
Line 1,693: Line 2,132:
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}}",
Gold=6
}
}
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",
Gold=5
}
}
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}}",
Gold=6
}
}
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}}",
Gold=5
}
}
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}}",
Gold=4
}
}
cards["Spuncher"] = {
cards["Spuncher"] = {
Name = "Spuncher",
Name="Spuncher",
Types={Enemy=true},
Types={Enemy=true},
Health=15,
Health=15,
Attack=3,
Attack=3,
Counter=3,
Counter=3,
Gold=2
}
}
cards["Tentickle"] = {
cards["Tentickle"] = {
Name = "Tentickle",
Name="Tentickle",
Types={Enemy=true},
Types={Enemy=true},
Health=8,
Health=7,
Attack=5,
Attack=4,
Counter=5,
Counter=4,
Desc="When hit, apply '''3''' {{Stat|Ink}} to the attacker"
Other="{{Stat|Resist Snow}}",
Desc="When hit, apply '''3''' {{Stat|Ink}} to the attacker",
Gold=7
}
}
cards["Waddlegoons"] = {
cards["Waddlegoons"] = {
Name = "Waddlegoons",
Name="Waddlegoons",
Types={Enemy=true},
Types={Enemy=true},
Health=9,
Health=9,
Line 1,749: Line 2,196:
Counter=3,
Counter=3,
Other="x3 {{Stat|Frenzy}}",
Other="x3 {{Stat|Frenzy}}",
Gold=7
}
}
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}}"
Other="{{Stat|Reaction}}",
Desc="{{Keyword|Wild}}<br>{{Keyword|Smackback}}",
Gold=7
}
}
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}}",
Gold=5
}
}
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}}",
Gold=7
}
}
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'''",
Gold=7
}
}
cards["Woolly Drek"] = {
cards["Woolly Drek"] = {
Name = "Woolly Drek",
Name="Woolly Drek",
Types={Enemy=true},
Types={Enemy=true},
Health=28,
Health=28,
Line 1,789: Line 2,242:
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",
Gold=7
}
}


--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",
UniqueName="Bombarder (Enemy)"
}
}
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["Octobom"] = {
Name="Octobom",
Types={EnemyClunker=true},
Scrap= 1,
Desc="When destroyed, apply '''4''' {{Stat|Ink}} to all enemies and 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}}"
Other="{{Stat|Reaction}}",
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,843: Line 2,305:
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["Bogberry"] = {
Name = "Bolgo",
Name="Bogberry",
Types={Miniboss=true},
Health= 8,
Attack= 1,
Counter= 4,
Desc="When healed, gain '''+2''' {{Stat|Attack}}",
}
cards["Bolgo"] = {
Name="Bolgo",
Types={Miniboss=true},
Types={Miniboss=true},
Health=20,
Health=20,
Line 1,852: Line 2,322:
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,861: Line 2,331:
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,870: Line 2,340:
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["Lumako"] = {
Name="Lumako",
Types={Miniboss=true},
Health= 30,
Attack= 3,
Counter= 3,
Other="{{Stat|Resist Snow}}",
Desc="Boost the effects of all enemies and allies by '''1'''",
}
}
cards["Maw Jaw"] = {
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"
Other="{{Stat|Reaction}}",
Desc="<div style=\"color:brown;\">Trigger when hit</div>",
}
}
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["Nimbus"] = {
Name="Nimbus",
Types={Miniboss=true},
Health= 10,
Attack= 2,
Counter= 5,
Desc="{{Keyword|Barrage}}",
}
}
cards["Numskull"] = {
cards["Numskull"] = {
Name = "Numskull",
Name="Numskull",
Types={Miniboss=true},
Types={Miniboss=true},
Health=20,
Health=30,
Attack=6,
Attack=6,
Counter=4,
Counter=4,
Other="12 {{Stat|Block}}<br>{{Stat|Resist Snow}}",
Other="8 {{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,904: Line 2,392:
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,913: Line 2,401:
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,922: Line 2,410:
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,939: Line 2,427:
Counter=3,
Counter=3,
Other="{{Stat|Resist Snow}}",
Other="{{Stat|Resist Snow}}",
Desc=" Apply '''3''' {{Stat|Shroom}}"
Desc="Apply '''3''' {{Stat|Shroom}}",
}
cards["Weevil"] = {
Name="Weevil",
Types={Miniboss=true},
Health= 50,
Attack= 4,
Counter= 4,
Other="{{Stat|Resist Snow}}",
Desc="Before attacking, destroy all [[Items]] in hand and gain '''+1''' {{Stat|Attack}} for each",
}
}


--Bosses
--Bosses
cards["Bam"] = {
cards["Bam"] = {
Name = "Bam",
Name="Bam",
Types={Boss=true},
Types={Boss=true},
Health=16,
Health=16,
Line 1,950: Line 2,448:
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,959: Line 2,457:
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 1,976: Line 2,474:
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 1,993: Line 2,491:
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}}",
UniqueName="Frost Guardian (Phase 2)"
}
}
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,027: Line 2,526:
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,044: Line 2,543:
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}}",
UniqueName="Infernoko (Phase 2)"
}
}
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=2,
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}}",
UniqueName="Krunker (Phase 2)"
}
}
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",
}
}


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


p.cards = cards
p.cards = cards


return p
return p
1,290

edits