1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32: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

113 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "hgss2-4",
localId: 4,
// Card informations
name: {
en: "Metagross",
fr: "Metalosse",
},
hp: 130,
type: [
Type.PSYCHIC,
],
dexId: 376,
image: {
low: {
en: "https://assets.tcgdex.net/en/hgss/hgss2/4/low.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss2/4/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/hgss/hgss2/4/high.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss2/4/high.png",
},
},
evolveFrom: {
en: "Metang",
fr: "Metang",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 41,
name: "Wataru Kawahara"
},
abilities: [{
id: 83,
type: AbilityType.POKEBODY,
name: {
en: "Psychic Float",
fr: "Psy-flotteur",
},
text: {
en: "If you have any Psychic Energy attached to your Active Pokémon, the Retreat Cost for that Pokémon is 0.",
fr: "Si une ou plusieurs cartes Énergie Psychic sont attachées à votre Pokémon Actif, le Coût de retraite de ce dernier est de 0.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Pulse Blast",
fr: "Explosion vibrante",
},
damage: 60
},{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.PSYCHIC
],
name: {
en: "Double Leg Hammer",
fr: "Marteau têtu",
},
text: {
en: "Choose 2 of your opponent's Benched Pokémon. This attack does 40 damage to each of them. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Choisissez 2 des Pokémon se trouvant sur le Banc de votre adversaire. Cette attaque inflige 40 dégâts à chacun d'entre eux. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 4,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "HS—Unleashed",
code: "hgss2"
}
}
export default card