1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 02:59:53 +00:00

73 lines
1.0 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Platinum'
const card: Card = {
name: {
en: "Torkoal",
fr: "Chartor",
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
324,
],
hp: 80,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Super Singe",
fr: "Ça sent le roussi!",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Burned.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Brûlé.",
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Flame Ball",
fr: "Boule de feu",
},
effect: {
en: "Move an Energy card attached to Torkoal to 1 of your Benched Pokémon.",
fr: "Déplacez une carte Énergie attachée à Charcor sur 1 des Pokémon de votre Banc.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Water",
value: "+20"
},
],
retreat: 2,
}
export default card