mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s
Some checks failed
Build / build (push) Failing after 59s
This commit is contained in:
72
data/Scarlet & Violet/151/136.ts
Normal file
72
data/Scarlet & Violet/151/136.ts
Normal file
@ -0,0 +1,72 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../151"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Pyroli",
|
||||
en: "Flareon",
|
||||
es: "Flareon",
|
||||
it: "Flareon",
|
||||
pt: "Flareon",
|
||||
de: "Flamara"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Fire"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
fr: "Flamme Destructrice",
|
||||
en: "Destructive Flame",
|
||||
es: "Llama Destructiva",
|
||||
it: "Devastofiamma",
|
||||
pt: "Chama Destruidora",
|
||||
de: "Verzehrende Flamme"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Lancez une pièce. Si c'est face, défaussez une Énergie du Pokémon Actif de votre adversaire.",
|
||||
en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon.",
|
||||
es: "Lanza 1 moneda. Si sale cara, descarta 1 Energía del Pokémon Activo de tu rival.",
|
||||
it: "Lancia una moneta. Se esce testa, scarta un'Energia dal Pokémon attivo del tuo avversario.",
|
||||
pt: "Jogue uma moeda. Se sair cara, descarte uma Energia do Pokémon Ativo do seu oponente.",
|
||||
de: "Wirf 1 Münze. Lege bei Kopf 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Fire", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Brasier Combatif",
|
||||
en: "Fighting Blaze",
|
||||
es: "Llamarada Luchadora",
|
||||
it: "Fiammata Combattente",
|
||||
pt: "Luta Labareda",
|
||||
de: "Feuerfäuste"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-ex ou un Pokémon-V, cette attaque inflige 90 dégâts supplémentaires.",
|
||||
en: "If your opponent's Active Pokémon is a Pokémon ex or Pokémon V, this attack does 90 more damage.",
|
||||
es: "Si el Pokémon Activo de tu rival es un Pokémon ex o un Pokémon V, este ataque hace 90 puntos de daño más.",
|
||||
it: "Se il Pokémon attivo del tuo avversario è un Pokémon-ex o un Pokémon-V, questo attacco infligge 90 danni in più.",
|
||||
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.",
|
||||
de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-ex oder Pokémon-V ist, fügt diese Attacke 90 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "90+"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user