1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +00:00

add cards svp promos en & pt and add abbreviations official stellar crown (#662)

This commit is contained in:
Helio Filho
2025-02-19 19:59:39 -03:00
committed by GitHub
parent a597759d9d
commit 0158daf40d
11 changed files with 487 additions and 1 deletions

View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SVP Black Star Promos"
const card: Card = {
set: Set,
name: {
en: "Vaporeon",
pt: "Vaporeon",
},
rarity: "None",
category: "Pokemon",
hp: 130,
types: ["Water"],
stage: "Stage1",
attacks: [
{
cost: ["Water"],
name: {
en: "Spiral Drain",
pt: "Dreno Espiral",
},
effect: {
en: "Heal 30 damage from this Pokémon.",
pt: "Cure 30 pontos de dano deste Pokémon."
},
damage: "30"
},
{
cost: ["Water", "Colorless", "Colorless"],
name: {
en: "Fighting Whirlpool",
pt: "Luta Redemoinho",
},
effect: {
en: "If your opponent's Active Pokémon is a Pokémon EX or Pokémon V, this attack does 90 more damage.",
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon EX ou um Pokémon V, este ataque causará 90 pontos de dano a mais."
},
damage: "90+"
},
],
retreat: 1,
regulationMark: "H"
}
export default card