mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
91 lines
2.8 KiB
TypeScript
91 lines
2.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Celebrations'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Flying Pikachu V",
|
||
fr: "Pikachu Volant V",
|
||
es: "Pikachu Vuelo V",
|
||
it: "Pikachu Volo V",
|
||
pt: "Pikachu Voador V",
|
||
de: "Fliegendes Pikachu V"
|
||
},
|
||
|
||
rarity: "Holo Rare V",
|
||
category: "Pokemon",
|
||
hp: 190,
|
||
types: ["Lightning"],
|
||
stage: "Basic",
|
||
illustrator: "aky CG Works",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Thunder Shock",
|
||
fr: "Éclair",
|
||
es: "Impactrueno",
|
||
it: "Tuonoshock",
|
||
pt: "Trovoada de Choques",
|
||
de: "Donnerschock"
|
||
},
|
||
|
||
effect: {
|
||
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
|
||
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
|
||
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
|
||
pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente ficará Paralisado.",
|
||
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Lightning"]
|
||
}, {
|
||
name: {
|
||
en: "Fly",
|
||
fr: "Vol",
|
||
es: "Vuelo",
|
||
it: "Volo",
|
||
pt: "Voar",
|
||
de: "Fliegen"
|
||
},
|
||
|
||
effect: {
|
||
en: "Flip a coin. If tails, this attack does nothing. If heads, during your opponent's next turn, prevent all damage from and effects of attacks done to this Pokémon.",
|
||
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien. Si c'est face, pendant le prochain tour de votre adversaire, évitez tous les dégâts et les effets d'attaques infligés à ce Pokémon.",
|
||
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada. Si sale cara, durante el próximo turno de tu rival, evita todo el daño y todos los efectos de los ataques infligidos a este Pokémon.",
|
||
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto. Se esce testa, durante il prossimo turno del tuo avversario, previeni sia i danni che gli effetti degli attacchi inflitti a questo Pokémon.",
|
||
pt: "Jogue 1 moeda. Se sair coroa, este ataque não fará nada. Se sair cara, durante o próximo turno do seu oponente, previna todo o dano e os efeitos de ataques causados a este Pokémon.",
|
||
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen. Verhindere bei Kopf während des nächsten Zuges deines Gegners allen Schaden durch und alle Effekte von Attacken, die diesem Pokémon zugefügt werden."
|
||
},
|
||
|
||
damage: 120,
|
||
cost: ["Colorless", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 0,
|
||
regulationMark: "E",
|
||
suffix: "V",
|
||
dexId: [25]
|
||
}
|
||
|
||
export default card
|