1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

82
data/Platinum/Arceus/1.ts Normal file
View File

@ -0,0 +1,82 @@
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: "Fightning",
value: "-20"
},
],
retreat: 3,
}
export default card