1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +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

88 lines
1.6 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 '../Rebel Clash'
const card: Card = {
name: {
en: "Butterfree",
fr: "Papilusion",
es: "Butterfree",
it: "Butterfree",
pt: "Butterfree",
de: "Smettbo"
},
illustrator: "Taira Akitsu",
rarity: "Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Metapod",
fr: "Chrysacier"
},
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Panic Poison",
fr: "Poison Panique",
es: "Pánico Venenoso",
it: "Velenostress",
pt: "Veneno do Pânico",
de: "Panikgift"
},
effect: {
en: "Your opponents Active Pokémon is now Burned, Confused, and Poisoned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé, Confus et Empoisonné.",
es: "El Pokémon Activo de tu rival pasa a estar Confundido, Envenenado y Quemado.",
it: "Il Pokémon attivo del tuo avversario viene bruciato, confuso e avvelenato.",
pt: "O Pokémon Ativo do seu oponente agora está Confuso, Envenenado e Queimado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt, verwirrt und vergiftet."
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Cutting Wind",
fr: "Vent Glacial",
es: "Viento Helado",
it: "Vento Tagliente",
pt: "Vento Dilacerante",
de: "Schneidender Wind"
},
damage: 80,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
hp: 140,
types: ["Grass"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card