1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 04:42:11 +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

73 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "Tropius",
en: "Tropius",
es: "Tropius",
it: "Tropius",
pt: "Tropius",
de: "Tropius"
},
illustrator: "Akira Komayama",
rarity: "Uncommon",
category: "Pokemon",
hp: 110,
types: ["Grass"],
attacks: [{
name: {
fr: "Main Verte",
en: "Attach Leaves",
es: "Unir Hojas",
it: "Assegnafoglie",
pt: "Ligar Folhas",
de: "Blätter anlegen"
},
effect: {
fr: "Attachez jusquà 2 cartes Énergie Grass de votre pile de défausse à vos Pokémon de Banc comme il vous plaît.",
en: "Attach up to 2 Grass Energy cards from your discard pile to your Benched Pokémon in any way you like.",
es: "Une hasta 2 cartas de Energía Grass de tu pila de descartes a tus Pokémon en Banca de la manera que desees.",
it: "Assegna ai tuoi Pokémon in panchina fino a due carte Energia Grass dalla tua pila degli scarti nel modo che preferisci.",
pt: "Ligue até 2 cartas de Energia Grass da sua pilha de descarte aos seus Pokémon no Banco como desejar.",
de: "Lege bis zu 2 Grass-Energiekarten aus deinem Ablagestapel beliebig an die Pokémon auf deiner Bank an."
},
cost: ["Colorless"]
}, {
name: {
fr: "Tornade",
en: "Gust",
es: "Tornado",
it: "Raffica",
pt: "Lufada de Vento",
de: "Windstoß"
},
damage: 30,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card