Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions localization/en-us.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5115,6 +5115,14 @@ return {
"or {C:dark_edition}Polychrome{} to it",
}
},
j_poke_carbink = {
name = "Carbink",
text = {
"{C:hazard}+#1#{} hazard layer",
"{C:attention}Hazard{} Cards are also",
"considered {C:attention}Gold{} cards",
}
},
j_poke_pumpkaboo_small = {
name = 'Pumpkaboo (Small)',
text = {
Expand Down
34 changes: 33 additions & 1 deletion pokemon/pokejokers_24.lua
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,38 @@ local sylveon={
-- Hawlucha 701
-- Dedenne 702
-- Carbink 703
local carbink = {
name = "carbink",
pos = {x = 11, y = 3},
config = {extra = { hazard_level = 1 }},
loc_vars = function(self, info_queue, card)
type_tooltip(self, info_queue, card)
info_queue[#info_queue+1] = {set = 'Other', key = 'hazard_level', vars = poke_get_hazard_level_vars()}
info_queue[#info_queue+1] = G.P_CENTERS.m_hazard
info_queue[#info_queue+1] = G.P_CENTERS.m_gold
return { vars = { card.ability.extra.hazard_level } }
end,
designer = "Eternalnacho",
rarity = 3,
cost = 7,
stage = "Basic",
ptype = "Fairy",
gen = 6,
blueprint_compat = false,
enhancement_gate = 'm_poke_hazard',
calculate = function(self, card, context)
if context.check_enhancement and context.other_card.config.center.key == 'm_poke_hazard' then
return { m_gold = true }
end
end,
add_to_deck = function(self, card, from_debuff)
poke_change_hazard_level(card.ability.extra.hazard_level)
end,
remove_from_deck = function(self, card, from_debuff)
poke_change_hazard_level(-card.ability.extra.hazard_level)
end,
attributes = {"hazards", "passive", "modify_card", "enhancements"}
}
-- Goomy 704
-- Sliggoo 705
-- Goodra 706
Expand Down Expand Up @@ -300,5 +332,5 @@ local gourgeist={
-- Diancie 719
-- Hoopa 720
return {name = "Pokemon Jokers 691-720",
list = {sylveon, pumpkaboo, gourgeist},
list = {sylveon, carbink, pumpkaboo, gourgeist},
}