1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

82 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Rongrigou V",
en: "Greedent V",
es: "Greedent V",
it: "Greedent V",
pt: "Greedent V",
de: "Schlaraffel V"
},
illustrator: "PLANETA Igarashi",
rarity: "Rare",
category: "Pokemon",
hp: 200,
types: ["Colorless"],
attacks: [{
name: {
fr: "Mâchouille",
en: "Crunch",
es: "Triturar",
it: "Sgranocchio",
pt: "Mastigada",
de: "Knirscher"
},
effect: {
fr: "Défaussez une Énergie du Pokémon Actif de votre adversaire.",
en: "Discard an Energy from your opponents Active Pokémon.",
es: "Descarta 1 Energía del Pokémon Activo de tu rival.",
it: "Scarta unEnergia dal Pokémon attivo del tuo avversario.",
pt: "Descarte 1 Energia do Pokémon Ativo do seu oponente.",
de: "Lege 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
},
damage: 40,
cost: ["Colorless", "Colorless"]
}, {
name: {
fr: "Écrasement Chancelant",
en: "Stumbling Press",
es: "Presión Tambaleante",
it: "Instabilpressa",
pt: "Aperto Estabanado",
de: "Stolpernder Ansturm"
},
effect: {
fr: "Lancez une pièce. Si cest pile, cette attaque ne fait rien.",
en: "Flip a coin. If tails, this attack does nothing.",
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada.",
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto.",
pt: "Jogue 1 moeda. Se sair coroa, este ataque não fará nada.",
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen."
},
damage: 180,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card