mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
106 lines
1.8 KiB
TypeScript
106 lines
1.8 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: "dp1-8",
|
|
localId: 8,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Magnezone",
|
|
fr: "Magnézone",
|
|
},
|
|
|
|
hp: 120,
|
|
|
|
type: [
|
|
Type.METAL,
|
|
],
|
|
|
|
dexId: 462,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp1/8/low",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp1/8/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp1/8/high",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp1/8/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Magneton",
|
|
fr: "Magneton",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE2,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 16,
|
|
name: "Nakaoka"
|
|
},
|
|
|
|
abilities: [{
|
|
id: 11,
|
|
type: AbilityType.POKEBODY,
|
|
name: {
|
|
en: "Magnetize",
|
|
fr: "Magnétiser",
|
|
},
|
|
text: {
|
|
en: "If you have any Metal Energy attached to your Active Pokémon, the Retreat Cost for that Pokémon is 0.",
|
|
fr: "Si votre Pokémon Actif possède des Énergies (M), son Coût de retraite est de 0.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.METAL,
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Metal Blast",
|
|
fr: "Explosion métallique",
|
|
},
|
|
text: {
|
|
en: "Does 50 damage plus 10 more damage for each Metal Energy attached to Magnezone.",
|
|
fr: "Inflige 50 dégâts plus 10 dégâts supplémentaires pour chaque Énergie Metal attachée à Magnézone.",
|
|
},
|
|
damage: 50
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.FIRE,
|
|
value: "+30"
|
|
}],
|
|
|
|
resistances: [{
|
|
type: Type.PSYCHIC,
|
|
value: "-20"
|
|
}],
|
|
|
|
retreat: 4,
|
|
|
|
rarity: Rarity.RareHolo,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Diamond & Pearl",
|
|
code: "dp1"
|
|
}
|
|
}
|
|
|
|
export default card
|