mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
101 lines
1.8 KiB
TypeScript
101 lines
1.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Champion\'s Path'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Centiskorch",
|
||
fr: "Scolocendre",
|
||
es: "Centiskorch",
|
||
it: "Centiskorch",
|
||
pt: "Centiskorch",
|
||
de: "Infernopod"
|
||
},
|
||
|
||
illustrator: "Shin Nagasawa",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 130,
|
||
|
||
types: [
|
||
"Fire",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Sizzlipede",
|
||
fr: "Grillepattes"
|
||
},
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Searing Flame",
|
||
fr: "Flammes Calcinantes",
|
||
es: "Llama Abrasadora",
|
||
it: "Fiamme Ustionanti",
|
||
pt: "Chama Cauterizante",
|
||
de: "Sengende Flammen"
|
||
},
|
||
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.",
|
||
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt."
|
||
},
|
||
damage: 50,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Fire",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Heat Crawler",
|
||
fr: "Mille-Pattes Brûlant",
|
||
es: "Serpenteo Candente",
|
||
it: "Arrampicalore",
|
||
pt: "Calor Rastejante",
|
||
de: "Hitzekrabbler"
|
||
},
|
||
|
||
damage: 140,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 3,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: true,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
description: {
|
||
en: "When it heats up, its body temperature reaches about 1,500 degrees Fahrenheit. It lashes its body like a whip and launches itself at enemies."
|
||
}
|
||
}
|
||
|
||
export default card
|