mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-28 22:02:15 +00:00
99 lines
1.6 KiB
TypeScript
99 lines
1.6 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "xy1-21",
|
||
localId: 21,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Magcargo",
|
||
fr: "Volcaropod",
|
||
},
|
||
|
||
hp: 110,
|
||
|
||
type: [
|
||
Type.FIRE,
|
||
],
|
||
|
||
dexId: 219,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy1/21/low",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy1/21/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy1/21/high",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy1/21/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Slugma",
|
||
fr: "Limagma",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: "kawayoo",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.FIRE,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Magma Mantle",
|
||
fr: "Manteau de Magma",
|
||
},
|
||
text: {
|
||
en: "You may discard the top card of your deck. If that card is a Fire Energy card, this attack does 50 more damage.",
|
||
fr: "Vous pouvez défausser la carte du dessus de votre deck. Si cette carte est une carte Énergie Fire, cette attaque inflige 50 dégâts supplémentaires.",
|
||
},
|
||
damage: 30
|
||
},{
|
||
cost: [
|
||
Type.FIRE,
|
||
Type.FIRE,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Heat Blast",
|
||
fr: "Explosion de Chaleur",
|
||
},
|
||
damage: 80
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.WATER,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 3,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "XY",
|
||
code: "xy1"
|
||
}
|
||
}
|
||
|
||
export default card
|