mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 04:42:11 +00:00
106 lines
1.5 KiB
TypeScript
106 lines
1.5 KiB
TypeScript
import Card from '../../../interfaces/Card'
|
||
import Type from '../../../interfaces/Type'
|
||
import Tag from '../../../interfaces/Tag'
|
||
import Rarity from '../../../interfaces/Rarity'
|
||
import AbilityType from '../../../interfaces/AbilityType'
|
||
import Category from '../../../interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "ex8-26",
|
||
localId: 26,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Skarmory",
|
||
},
|
||
|
||
hp: 70,
|
||
|
||
type: [
|
||
Type.METAL,
|
||
],
|
||
|
||
dexId: 227,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex8/26/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex8/26/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 10,
|
||
name: "Kouki Saitou"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 21,
|
||
type: AbilityType.POKEBODY,
|
||
name: {
|
||
en: "Metallic Lift",
|
||
},
|
||
text: {
|
||
en: "If Skarmory has any Metal Energy attached to it, the Retreat Cost for Skarmory is 0.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Spearhead",
|
||
},
|
||
text: {
|
||
en: "Draw a card.",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Heavy Metal",
|
||
},
|
||
text: {
|
||
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: Type.LIGHTNING,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.FIGHTING,
|
||
value: "-30"
|
||
}],
|
||
|
||
|
||
|
||
rarity: Rarity.Rare,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Deoxys",
|
||
code: "ex8"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|