1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Florian Bouillon dc52152f23
Added informations (#25)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 22:20:17 +02:00

60 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Centiskorch",
fr: "Scolocendre"
},
illustrator: "Souichirou Gunjima",
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Fire"],
evolveFrom: {
en: "Sizzlipede",
fr: "Grillepattes"
},
abilities: [{
type: "Ability",
name: {
en: "Overheater",
fr: "Surchauffeur"
},
effect: {
en: "Whenever your opponent flips a coin for their Burned Pokémon during Pokémon Checkup, it doesnt recover from that Special Condition even if the result is heads.",
fr: "Chaque fois que votre adversaire lance une pièce pour son Pokémon Brûlé pendant le Contrôle Pokémon, celui-ci ne guérit pas de cet État Spécial même si le résultat est face."
}
}],
attacks: [{
name: {
en: "Bursting Inferno",
fr: "Enfer Explosif"
},
effect: {
en: "Your opponents Active Pokémon is now Burned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé."
},
damage: 130,
cost: ["Fire", "Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2
}
export default card