1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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

View File

@ -0,0 +1,70 @@
import { Card } from '../../../interfaces'
import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Charizard Star δ",
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
6,
],
hp: 90,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Rotating Claws",
},
effect: {
en: "You may discard an Energy card attached to Charizard Star. If you do, search your discard pile for an Energy card (excluding the one you discarded) and attach it to Charizard Star.",
},
damage: 20,
},
{
cost: [
"Darkness",
"Darkness",
"Darkness",
"Darkness",
"Colorless",
],
name: {
en: "Dark Swirl",
},
effect: {
en: "Discard all Energy cards attached to Charizard Star and discard the top 3 cards from your opponent's deck.",
},
damage: 150,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card