1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

82 lines
1.9 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Victini V",
fr: "Victini V",
es: "Victini V",
it: "Victini V",
pt: "Victini V",
de: "Victini V"
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
hp: 190,
types: ["Fire"],
attacks: [{
name: {
en: "V Bullet",
fr: "Projectile-V",
es: "Bala V",
it: "Dardo V",
pt: "Projétil V",
de: "V-Kugel"
},
effect: {
en: "If your opponents Active Pokémon is a Pokémon V, this attack does 50 more damage.",
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-V, cette attaque inflige 50 dégâts supplémentaires.",
es: "Si el Pokémon Activo de tu rival es un Pokémon V, este ataque hace 50 puntos de daño más.",
it: "Se il Pokémon attivo del tuo avversario è un Pokémon-V, questo attacco infligge 50 danni in più.",
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon V, este ataque causará 50 pontos de dano a mais.",
de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-V ist, fügt diese Attacke 50 Schadenspunkte mehr zu."
},
damage: "10+",
cost: ["Fire"]
}, {
name: {
en: "Flare Shot",
fr: "Tir Flambant",
es: "Disparo Llamarada",
it: "Colpofiammata",
pt: "Disparo de Labareda",
de: "Flackerschuss"
},
effect: {
en: "Discard all Energy from this Pokémon.",
fr: "Défaussez toute lÉnergie de ce Pokémon.",
es: "Descarta todas las Energías de este Pokémon.",
it: "Scarta tutte le Energie da questo Pokémon.",
pt: "Descarte todas as Energias deste Pokémon.",
de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel."
},
damage: 120,
cost: ["Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card