1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

93 lines
1.3 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 '../Evolutions'
const card: Card = {
name: {
en: "Charizard",
fr: "Dracaufeu",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
6,
],
hp: 150,
types: [
"Fire",
],
evolveFrom: {
en: "Charmeleon",
fr: "Reptincel",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Energy Burn",
},
effect: {
en: "All Energy attached to this Pokémon are Fire Energy instead of their usual type.",
},
},
],
attacks: [
{
cost: [
"Fire",
"Fire",
"Fire",
"Fire",
],
name: {
en: "Fire Spin",
fr: "Talent : Dépense dÉnergie",
},
effect: {
en: "Discard 3 Energy attached to this Pokémon.",
fr: "Toutes les Énergies attachées à ce Pokémon sont des Énergies Fire au lieu de leur type habituel.",
},
damage: 200,
},
{
cost: [
"Fire",
"Fire",
"Fire",
"Fire",
],
name: {
fr: "Danse Flamme",
},
effect: {
fr: "Défaussez 3 Énergies attachées à ce Pokémon.",
},
damage: 200,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 3,
}
export default card