1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00

91 lines
1.9 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 '../Furious Fists'
const card: Card = {
name: {
en: "Vibrava",
fr: "Vibraninf",
es: "Vibrava",
it: "Vibrava",
pt: "Vibrava",
de: "Vibrava"
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
329,
],
hp: 80,
types: [
"Dragon",
],
evolveFrom: {
en: "Trapinch",
fr: "Kraknoix",
es: "Trapinch",
it: "Trapinch",
pt: "Trapinch",
de: "Knacklion"
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Charge Energy",
fr: "Recharge Énergétique",
es: "Cargar Energía",
it: "Caricaenergia",
pt: "Carga de Energia",
de: "Energielader"
},
effect: {
en: "Search your deck for up to 2 basic Energy cards, reveal them, and put them into your hand. Shuffle your deck afterward.",
fr: "Cherchez jusqu'à 2 cartes Énergie de base dans votre deck, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
es: "Busca en tu baraja hasta 2 cartas de Energía Básica, enséñalas y ponlas en tu mano. Baraja las cartas de tu baraja después.",
it: "Cerca nel tuo mazzo fino a due carte Energia base, mostrale e aggiungile alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Procure no seu baralho até 2 cards de Energia básica, revele-os e coloque-os na mão. Em seguida, embaralhe seus cards.",
de: "Durchsuche dein Deck nach 2 Basis-Energiekarten, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
},
},
{
cost: [
"Grass",
"Fighting",
],
name: {
en: "Vibration",
fr: "Vibration",
es: "Vibración",
it: "Vibrazione",
pt: "Vibração",
de: "Schwingung"
},
damage: 30,
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 1,
}
export default card