mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
67 lines
1.0 KiB
TypeScript
67 lines
1.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Dragon'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Vibrava",
|
|
fr: "Vibraninf",
|
|
de: "Vibrava"
|
|
},
|
|
illustrator: "Hajime Kusajima",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
329,
|
|
],
|
|
hp: 70,
|
|
types: [
|
|
"Colorless",
|
|
],
|
|
evolveFrom: {
|
|
en: "Trapinch",
|
|
},
|
|
stage: "Stage1",
|
|
|
|
abilities: [
|
|
{
|
|
type: "Poke-BODY",
|
|
name: {
|
|
en: "Levitate",
|
|
fr: "Lévitation",
|
|
de: "Schwebe"
|
|
},
|
|
effect: {
|
|
en: "If Vibrava has any basic Energy cards attached to it, Vibrava's Retreat Cost is 0.",
|
|
fr: "Si Vibraninf possède des cartes Énergie de base, son Coût de retraite est de 0.",
|
|
de: "Solange mindestens 1 Basis-Energiekarte an Vibrava angelegt ist, betragen die Rückzugskosten von Vibrava 0."
|
|
},
|
|
},
|
|
],
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Razor Wing",
|
|
fr: "Aile tranchante",
|
|
de: "Rasierflügel"
|
|
},
|
|
|
|
damage: 20,
|
|
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|