1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39: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

58
data/EX/Dragon/11.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from '../../../interfaces'
import Set from '../Dragon'
const card: Card = {
name: {
en: "Shedinja",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
292,
],
hp: 30,
types: [
"Grass",
],
evolveFrom: {
en: "Nincada",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Wonder Guard",
},
effect: {
en: "Prevent all effects of attacks, including damage, done to Shedinja by your opponent's Evolved Pokémon and Pokémon-ex.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Damage Curse",
},
effect: {
en: "Put 1 damage counter, plus 1 more damage counter for each damage counter on Shedinja, on the Defending Pokémon.",
},
},
],
}
export default card