1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,81 @@
import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Shuckle-GX",
fr: "Caratroc-GX",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
213,
],
hp: 170,
types: [
"Grass",
],
suffix: "GX",
abilities: [
{
type: "Ability",
name: {
en: "Protective Shell",
fr: "Carapace Protectrice",
},
effect: {
en: "Prevent all damage done to this Pokémon by attacks from your opponent's Pokémon that have 2 or fewer Energy attached to them.",
fr: "Évitez tous les dégâts dattaques infligés à ce Pokémon par les Pokémon de votre adversaire auxquels sont attachées 2 Énergies ou moins.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Triple Poison",
fr: "Triple Poison",
},
effect: {
en: "Your opponent's Active Pokémon is now Poisoned. Put 3 damage counters instead of 1 on that Pokémon between turns.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Placez 3 marqueurs de dégâts au lieu dun sur le Pokémon ciblé entre chaque tour.",
},
},
{
cost: [
"Colorless",
],
name: {
en: "Wrap-GX",
fr: "Ligotage-GX",
},
effect: {
en: "Your opponent's Active Pokémon is now Paralyzed. (You can't use more than 1 GX attack in a game.)",
fr: "Le Pokémon Actif de votre adversaire est maintenant Paralysé. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card