mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
108 lines
1.6 KiB
TypeScript
108 lines
1.6 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: "ex10-41",
|
||
localId: 41,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Magcargo",
|
||
},
|
||
|
||
hp: 80,
|
||
|
||
type: [
|
||
Type.FIRE,
|
||
],
|
||
|
||
dexId: 219,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex10/41/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex10/41/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Slugma",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 18,
|
||
name: "Tomokazu Komiya"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 230,
|
||
type: AbilityType.POKEBODY,
|
||
name: {
|
||
en: "Dual Armor",
|
||
},
|
||
text: {
|
||
en: "As long as Magcargo has any Fighting Energy attached to it, Magcargo is both Fire and Fighting type.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.FIRE,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Smokescreen",
|
||
},
|
||
text: {
|
||
en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.",
|
||
},
|
||
damage: 30
|
||
},{
|
||
cost: [
|
||
Type.FIRE,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Extra Flame",
|
||
},
|
||
text: {
|
||
en: "If the Defending Pokémon is Pokémon-ex, this attack does 40 damage plus 30 more damage.",
|
||
},
|
||
damage: 40
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.WATER,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.Uncommon,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Unseen Forces",
|
||
code: "ex10"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|