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

83 lines
1.0 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Charizard",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
6,
],
types: [
"Fire",
],
evolveFrom: {
en: "Charmeleon",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Fire Formation",
},
effect: {
en: "Each of Charizard's attacks does 10 more damage for each Fire Pokémon on your Bench to your opponent's Active Pokémon (before applying Weakness and Resistance).",
},
},
],
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Fire Wing",
},
damage: 30,
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Burning Tail",
},
effect: {
en: "Discard a Fire Energy attached to Charizard.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Water",
value: "+30"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 3,
}
export default card