mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
59
data/Scarlet & Violet/Temporal Forces/027.ts
Normal file
59
data/Scarlet & Violet/Temporal Forces/027.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Temporal Forces"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rapidash",
|
||||
fr: "Galopa",
|
||||
es: "Rapidash",
|
||||
it: "Rapidash",
|
||||
pt: "Rapidash"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Fire"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Combustion",
|
||||
fr: "Fournaise",
|
||||
es: "Combustión",
|
||||
it: "Fuoco Continuo",
|
||||
pt: "Combustão"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Inferno Onrush",
|
||||
fr: "Torrent d'Enfer",
|
||||
es: "Infierno Desatado",
|
||||
it: "Assalto Infernale",
|
||||
pt: "Investida Infernal"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 30 damage to itself.",
|
||||
fr: "Ce Pokémon s'inflige aussi 30 dégâts.",
|
||||
es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.",
|
||||
it: "Questo Pokémon infligge anche 30 danni a se stesso.",
|
||||
pt: "Este Pokémon também causa 30 pontos de dano a si mesmo."
|
||||
},
|
||||
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
retreat: 0,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user