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

77
data/EX/Deoxys/20.ts Normal file
View File

@ -0,0 +1,77 @@
import { Card } from '../../../interfaces'
import Set from '../Deoxys'
const card: Card = {
name: {
en: "Magcargo",
},
illustrator: "Midori Harada",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
219,
],
hp: 80,
types: [
"Fire",
],
evolveFrom: {
en: "Slugma",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Smooth Over",
},
effect: {
en: "Once during your turn (before your attack), you may search your deck for a card. Shuffle your deck, then put that card on top of your deck. This power can't be used if Magcargo is affected by a Special Condition.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Knock Over",
},
effect: {
en: "You may discard any Stadium card in play.",
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Combustion",
},
damage: 50,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card