1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

99 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 '../Rebel Clash'
const card: Card = {
dexId: [12],
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",
es: "Metapod",
it: "Metapod",
pt: "Metapod",
de: "Safcon"
},
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 opponent's 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
},
stage: "Stage2",
description: {
en: "In battle, it flaps its wings at great speed to release highly toxic dust into the air."
}
}
export default card