mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
59
data/Scarlet & Violet/Temporal Forces/214.ts
Normal file
59
data/Scarlet & Violet/Temporal Forces/214.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Temporal Forces"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gouging Fire ex",
|
||||
fr: "Feu-Perçant-ex",
|
||||
es: "Flamariete ex",
|
||||
it: "Vampeaguzze-ex",
|
||||
pt: "Fogo Corrosão ex"
|
||||
},
|
||||
|
||||
rarity: "Hyper rare",
|
||||
category: "Pokemon",
|
||||
hp: 230,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Heat Blast",
|
||||
fr: "Explosion de Chaleur",
|
||||
es: "Explosión de Calor",
|
||||
it: "Caldobomba",
|
||||
pt: "Raio de Calor"
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}, {
|
||||
cost: ["Fire", "Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Blaze Blitz",
|
||||
fr: "Assaut Flamboyant",
|
||||
es: "Envite Llameante",
|
||||
it: "Carica Infuocata",
|
||||
pt: "Avanço Incendiário"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon can't use Blaze Blitz again until it leaves the Active Spot.",
|
||||
fr: "Ce Pokémon ne peut pas réutiliser Assaut Flamboyant tant qu'il ne quitte pas le Poste Actif.",
|
||||
es: "Este Pokémon no puede usar Envite Llameante de nuevo hasta que deje el Puesto Activo.",
|
||||
it: "Questo Pokémon non può più usare Carica Infuocata finché non lascia la posizione attiva.",
|
||||
pt: "Este Pokémon não poderá usar Avanço Incendiário novamente até sair do Campo Ativo."
|
||||
},
|
||||
|
||||
damage: 260
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user