mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 04:42:11 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
89 lines
1.6 KiB
TypeScript
89 lines
1.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Darkness Ablaze'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Butterfree V",
|
||
fr: "Papilusion V",
|
||
es: "Butterfree V",
|
||
it: "Butterfree V",
|
||
pt: "Butterfree V",
|
||
de: "Smettbo V"
|
||
},
|
||
|
||
illustrator: "Saki Hayashiro",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 190,
|
||
|
||
types: [
|
||
"Grass",
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
],
|
||
name: {
|
||
en: "Dizzying Poison",
|
||
fr: "Poison Étourdissant",
|
||
es: "Veneno Mareante",
|
||
it: "Stordiveleno",
|
||
pt: "Veneno Vertiginoso",
|
||
de: "Schwindelerregendes Gift"
|
||
},
|
||
effect: {
|
||
en: "Your opponent's Active Pokémon is now Confused and Poisoned.",
|
||
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus et Empoisonné.",
|
||
es: "El Pokémon Activo de tu rival pasa a estar Confundido y Envenenado.",
|
||
it: "Il Pokémon attivo del tuo avversario viene confuso e avvelenato.",
|
||
pt: "O Pokémon Ativo do seu oponente agora está Confuso e Envenenado.",
|
||
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt und vergiftet."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Grass",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Blasting Wind",
|
||
fr: "Vent Impitoyable",
|
||
es: "Vientos Explosivos",
|
||
it: "Vento Distruttivo",
|
||
pt: "Vendaval Avassalador",
|
||
de: "Peitschender Wind"
|
||
},
|
||
|
||
damage: 130,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
suffix: "V"
|
||
}
|
||
|
||
export default card
|