1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

69 lines
1.0 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 '../Crystal Guardians'
const card: Card = {
name: {
en: "Charizard δ",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
6,
],
hp: 120,
types: [
"Lightning",
"Metal",
],
evolveFrom: {
en: "Charmeleon",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Peal of Thunder",
},
effect: {
en: "Once during your turn, when you play Charizard from your hand to evolve 1 of your Pokémon, you may look at the top 5 cards of your deck, choose as many Energy cards as you like, and attach them to 1 of your Pokémon. Discard the other cards.",
},
},
],
attacks: [
{
cost: [
"Lightning",
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Metal Burn",
},
effect: {
en: "Discard all Metal Energy attached to Charizard.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card