mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
101 lines
1.8 KiB
TypeScript
101 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: "hgss2-22",
|
||
localId: 22,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Primeape",
|
||
fr: "Colossinge",
|
||
},
|
||
|
||
hp: 90,
|
||
|
||
type: [
|
||
Type.FIGHTING,
|
||
],
|
||
|
||
dexId: 57,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/hgss/hgss2/22/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/hgss/hgss2/22/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/hgss/hgss2/22/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/hgss/hgss2/22/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Mankey",
|
||
fr: "Férosinge",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 12,
|
||
name: "Sachiko Adachi"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Low Kick",
|
||
fr: "Balayage",
|
||
},
|
||
damage: 30
|
||
},{
|
||
cost: [
|
||
Type.FIGHTING,
|
||
Type.FIGHTING
|
||
],
|
||
name: {
|
||
en: "Bebop Punch",
|
||
fr: "Rythmofrappe",
|
||
},
|
||
text: {
|
||
en: "Choose 1 of your opponent's Pokémon. Flip a coin until you get tails. This attack does 50 damage times the number of heads to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
fr: "Choisissez l'un des Pokémon de votre adversaire. Lancez une pièce jusqu'à ce qu'elle tombe sur pile. Cette attaque inflige à ce Pokémon 50 dégâts multipliés par le nombre de côtés face. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||
},
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.PSYCHIC,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.Rare,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "HS—Unleashed",
|
||
code: "hgss2"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|