1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-26 13:59: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,59 @@
import { Card } from '../../../interfaces'
import Set from '../Legendary Treasures'
const card: Card = {
name: {
en: "Druddigon",
},
illustrator: "match",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
621,
],
hp: 100,
types: [
"Colorless",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Rough Skin",
},
effect: {
en: "If this Pokémon is your Active Pokémon and is damaged by an opponent's attack (even if this Pokémon is Knocked Out), put 2 damage counters on the Attacking Pokémon.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Clutch",
},
effect: {
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
},
damage: 60,
},
],
}
export default card