1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +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,68 @@
import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Shelgon",
},
illustrator: "Atsuko Nishida",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
372,
],
types: [
"Colorless",
],
evolveFrom: {
en: "Bagon",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Scrunch",
},
effect: {
en: "Flip a coin. If heads, prevent all damage done to Shelgon by attacks during your opponent's next turn.",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Dragon Bump",
},
effect: {
en: "If Shelgon has any basic Fire Energy and any basic Water Energy attached to it, this attack does 40 damage plus 20 more damage.",
},
damage: "40+",
},
],
weaknesses: [
{
type: "Colorless",
value: "+20"
},
],
retreat: 1,
}
export default card