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

104 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "bw8-46",
localId: 46,
// Card informations
name: {
en: "Magnezone",
fr: "Magnézone",
},
hp: 140,
type: [
Type.LIGHTNING,
],
dexId: 462,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw8/46/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw8/46/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw8/46/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw8/46/high.png",
},
},
evolveFrom: {
en: "Magneton",
fr: "Magnéton",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
abilities: [{
id: 1045,
type: AbilityType.TALENT,
name: {
en: "Dual Brains",
fr: "Double Cerveau",
},
text: {
en: "During your turn, you may play 2 Supporter cards.",
fr: "Pendant votre tour, vous pouvez jouer 2 cartes Supporter.",
}
}],
attacks: [{
cost: [
Type.LIGHTNING,
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Gyro Ball",
fr: "Gyroballe",
},
text: {
en: "Switch this Pokémon with 1 of your Benched Pokémon. Then, your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
fr: "Échangez ce Pokémon avec 1 de vos Pokémon de Banc. Ensuite, votre adversaire échange le Pokémon Défenseur avec 1 de ses Pokémon de Banc.",
},
damage: 80
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 3,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Plasma Storm",
code: "bw8"
}
}
export default card