1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +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

75
data/EX/Deoxys/104.ts Normal file
View File

@ -0,0 +1,75 @@
import { Card } from '../../../interfaces'
import Set from '../Deoxys'
const card: Card = {
name: {
en: "Sharpedo ex",
},
illustrator: "Hikaru Koike",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
319,
],
hp: 100,
types: [
"Darkness",
],
evolveFrom: {
en: "Carvanha",
},
suffix: "EX",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Drag Off",
},
effect: {
en: "Before doing damage, you may switch 1 of your opponent's Benched Pokémon with the Defending Pokémon. If you do, this attack does 20 damage to the new Defending Pokémon. Your opponent chooses the Defending Pokémon to switch.",
},
damage: 20,
},
{
cost: [
"Darkness",
"Darkness",
"Colorless",
],
name: {
en: "Darkness Blast",
},
effect: {
en: "You may discard a Darkness Energy attached to Sharpedo ex. If you do, this attack does 60 damage plus 20 more damage and discard 1 Energy card attached to the Defending Pokémon.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card