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

58
data/EX/Deoxys/14.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from '../../../interfaces'
import Set from '../Deoxys'
const card: Card = {
name: {
en: "Shedinja",
},
illustrator: "Yukiko Baba",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
292,
],
hp: 50,
types: [
"Psychic",
],
evolveFrom: {
en: "Nincada",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Empty Shell",
},
effect: {
en: "When Shedinja is Knocked Out, your opponent doesn't take any Prize cards.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Extra Curse",
},
effect: {
en: "Put 2 damage counters on the Defending Pokémon. If the Defending Pokémon is Pokémon-ex, put 4 damage counters instead.",
},
},
],
}
export default card