1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

94 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: "dp7-66",
localId: 66,
// Card informations
name: {
en: "Magnemite",
fr: "Magnemite",
},
hp: 50,
type: [
Type.METAL,
],
dexId: 81,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp7/66/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp7/66/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp7/66/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp7/66/high.png",
},
},
evolveFrom: {
fr: "Magneti",
},
tags: [
Tag.BASIC,
],
illustrator: {
id: 43,
name: "Aya Kusube"
},
attacks: [{
cost: [
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Magnetic Bomb",
fr: "Bombe magnétique",
},
text: {
en: "Flip a coin. If heads, this attack does 30 damage plus 10 more damage. If tails, Magnemite does 10 damage to itself.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 10 dégâts supplémentaires. Si c'est pile, Magneti s'inflige 10 dégâts.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIRE,
value: "+10"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Stormfront",
code: "dp7"
}
}
export default card