mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
65
data/Scarlet & Violet/Temporal Forces/037.ts
Normal file
65
data/Scarlet & Violet/Temporal Forces/037.ts
Normal file
@ -0,0 +1,65 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Temporal Forces"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Centiskorch",
|
||||
fr: "Scolocendre",
|
||||
es: "Centiskorch",
|
||||
it: "Centiskorch",
|
||||
pt: "Centiskorch"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Fire"],
|
||||
stage: "Stage1",
|
||||
|
||||
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"],
|
||||
|
||||
name: {
|
||||
en: "Charring Breath",
|
||||
fr: "Souffle Incendiaire",
|
||||
es: "Aliento Incendiario",
|
||||
it: "Incenerespiro",
|
||||
pt: "Hálito Carbonizador"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If your opponent's Active Pokémon isn't Burned, this attack does nothing.",
|
||||
fr: "Si le Pokémon Actif de votre adversaire n'est pas Brûlé, cette attaque ne fait rien.",
|
||||
es: "Si el Pokémon Activo de tu rival no está Quemado, este ataque no hace nada.",
|
||||
it: "Se il Pokémon attivo del tuo avversario non è bruciato, questo attacco non ha effetto.",
|
||||
pt: "Se o Pokémon Ativo do seu oponente não estiver Queimado, este ataque não fará nada."
|
||||
},
|
||||
|
||||
damage: 180
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user