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

80
data/EX/Deoxys/26.ts Normal file
View File

@ -0,0 +1,80 @@
import { Card } from '../../../interfaces'
import Set from '../Deoxys'
const card: Card = {
name: {
en: "Skarmory",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
227,
],
hp: 70,
types: [
"Metal",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Metallic Lift",
},
effect: {
en: "If Skarmory has any Metal Energy attached to it, the Retreat Cost for Skarmory is 0.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Spearhead",
},
effect: {
en: "Draw a card.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Heavy Metal",
},
effect: {
en: "Flip a coin for each Metal Energy attached to Skarmory. This attack does 10 damage plus 20 more damage for each heads.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-30"
},
],
}
export default card