diff --git a/code/modules/tcg/cards.dm b/code/modules/tcg/cards.dm index b5498b4a0a..10f3619474 100644 --- a/code/modules/tcg/cards.dm +++ b/code/modules/tcg/cards.dm @@ -261,8 +261,13 @@ series = list(/datum/tcg_card/pack_1, /datum/tcg_card/pack_nuclear) contains_coin = 100 - card_count = 10 - guaranteed_count = 2 + card_count = 9 + guaranteed_count = 3 + + guar_rarity = list( //Better chances + "Legendary" = 5, + "Epic" = 10, + "Rare" = 30) /obj/item/cardpack/equipped(mob/user, slot, initial) . = ..() diff --git a/code/modules/tcg/pack_nuclear.dm b/code/modules/tcg/pack_nuclear.dm index 942506a708..effe665925 100644 --- a/code/modules/tcg/pack_nuclear.dm +++ b/code/modules/tcg/pack_nuclear.dm @@ -305,3 +305,31 @@ faction = "Syndicate" rarity = "Legendary" card_type = "Equipment" + +/datum/tcg_card/pack_nuclear/darkhonk + name = "Dark H.O.N.K. Mech" + desc = "Produced by \"Tyranny of Honk, INC\", this exosuit is designed as heavy clown-support. This one was painted black for maximum HONKing!" + rules = "Taunt. Squad Tactics. Blocker." + icon_state = "darkhonk" + + mana_cost = 8 + attack = 6 + health = 8 + + faction = "Unique" + rarity = "Epic" + card_type = "Unit" + +/datum/tcg_card/pack_nuclear/shielded_hardsuit + name = "Shielded Blood-red Hardsuit" + desc = "An advanced version of Gorlex Maradeurs' hardsuit with built-in energy shielding." + rules = "Give equipped unit First Strike." + icon_state = "shielded_hardsuit" + + mana_cost = 4 + attack = 0 + health = 4 + + faction = "Syndicate" + rarity = "Epic" + card_type = "Equipment" diff --git a/code/modules/tcg/pack_star.dm b/code/modules/tcg/pack_star.dm index 94529d7c77..4ee04f4710 100644 --- a/code/modules/tcg/pack_star.dm +++ b/code/modules/tcg/pack_star.dm @@ -230,7 +230,7 @@ /datum/tcg_card/exodia/exodia_singulo name = "Singularity" desc = "A monstrous gravitational singularity, pitch black(but not quiet) and very menacings." - rules = "This card doesn't leave field. At the end of each turn: Remove all the cards from the field." + rules = "This card doesn't leave field. At the end of each turn: Remove all the cards(except other Exodia cards) from the field." icon_state = "exodia_singularity" mana_cost = 8 @@ -242,7 +242,7 @@ /datum/tcg_card/exodia/exodia_tesla name = "Energy Orb" desc = "An orb made out of hypercharged plasma. An ultimate bug zapper." - rules = "This card doesn't leave field. Every turn all units take 2 damage." + rules = "This card doesn't leave field. Every turn all units take 4 damage." icon_state = "exodia_tesla" mana_cost = 8 @@ -254,7 +254,7 @@ /datum/tcg_card/exodia/exodia_narie name = "Nar-Sie" desc = "An avatar of the Nar-Sie, one of the Eldritch Gods." - rules = "This card doesn't leave field. Every turn all friendly units take 1 damage and you restore 1 lifeshard ." + rules = "This card doesn't leave field. Every turn all units take 1 damage and you restore 1 lifeshard." icon_state = "exodia_narsie" mana_cost = 8 @@ -266,7 +266,7 @@ /datum/tcg_card/exodia/exodia_ratvar name = "Ratvar" desc = "Ratvar, the god of cogs and clockwork mechanisms, was trapped by Nar-Sie a long ago." - rules = "This card doesn't leave field. Every turn enemy hero recieves 1 lifeshard damage." + rules = "This card doesn't leave field. Every turn enemy hero recieves 2 lifeshard damage." icon_state = "exodia_ratvar" mana_cost = 8 @@ -275,7 +275,7 @@ rarity = "Exodia" card_type = "Spell" -/datum/tcg_card/pack_star/exodia +/datum/tcg_card/exodia/exodia name = "Eldritch Horror" desc = "The Eldritch Horror is a long forgotten demon that was the beginning of everything. Afterwards, his creations revolted and left him abadoned in endless void." rules = "This card doesn't leave field. If all other 4 Exodia cards are on the field(Singularity, Energy Orb, Nar-Sie and Ratvar), the game is won." @@ -284,7 +284,7 @@ mana_cost = 8 faction = "Exodia" - rarity = "Exodia" + rarity = "Unique" //No drop lads card_type = "Spell" /obj/item/tcg_card/special/exodia_singulo diff --git a/icons/obj/tcg/pack_nuclear.dmi b/icons/obj/tcg/pack_nuclear.dmi index 7894aae6f4..27a440491d 100644 Binary files a/icons/obj/tcg/pack_nuclear.dmi and b/icons/obj/tcg/pack_nuclear.dmi differ