mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
57
data/Scarlet & Violet/Paldean Fates/011.ts
Normal file
57
data/Scarlet & Violet/Paldean Fates/011.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Numel",
|
||||
fr: "Chamallot",
|
||||
es: "Numel",
|
||||
it: "Numel",
|
||||
pt: "Numel"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
en: "Singe",
|
||||
fr: "Roussi",
|
||||
es: "Quemadura",
|
||||
it: "Scottata",
|
||||
pt: "Chamuscada"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Burned.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Quemado.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene bruciato.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Queimado."
|
||||
}
|
||||
}, {
|
||||
cost: ["Fire", "Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Heat Blast",
|
||||
fr: "Explosion de Chaleur",
|
||||
es: "Explosión de Calor",
|
||||
it: "Caldobomba",
|
||||
pt: "Raio de Calor"
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user