mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
add cards svp promos en & pt and add abbreviations official stellar crown (#662)
This commit is contained in:
52
data/Scarlet & Violet/SVP Black Star Promos/173.ts
Normal file
52
data/Scarlet & Violet/SVP Black Star Promos/173.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SVP Black Star Promos"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Eevee",
|
||||
pt: "Eevee",
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Boosted Evolution",
|
||||
pt: "Impulso da Evolução",
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "As long as this Pokémon is in the Active Spot, it can evolve during your first turn or the turn you play it.",
|
||||
pt: "Enquanto este Pokémon estiver no Campo Ativo, ele poderá evoluir durante o seu primeiro turno ou durante o turno em que for colocado em jogo."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Reckless Charge",
|
||||
pt: "Carga Indomável",
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 10 damage to itself.",
|
||||
pt: "Este Pokémon também causará 10 pontos de dano a si mesmo."
|
||||
},
|
||||
}
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user