mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
107 lines
1.7 KiB
TypeScript
107 lines
1.7 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: "sm2-65",
|
||
localId: 65,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Machamp",
|
||
fr: "Mackogneur",
|
||
},
|
||
|
||
hp: 160,
|
||
|
||
type: [
|
||
Type.FIGHTING,
|
||
],
|
||
|
||
dexId: 68,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm2/65/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm2/65/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm2/65/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm2/65/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Machoke",
|
||
fr: "Machopeur",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 67,
|
||
name: "Hitoshi Ariga"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.FIGHTING,
|
||
Type.FIGHTING
|
||
],
|
||
name: {
|
||
en: "Settle the Score",
|
||
fr: "Règlement de Comptes",
|
||
},
|
||
text: {
|
||
en: "This attack does 80 more damage for each Prize card your opponent took on their last turn.",
|
||
fr: "Cette attaque inflige 80 dégâts supplémentaires pour chaque carte Récompense que votre adversaire a récupérée lors de son dernier tour.",
|
||
},
|
||
damage: 20
|
||
},{
|
||
cost: [
|
||
Type.FIGHTING,
|
||
Type.FIGHTING,
|
||
Type.FIGHTING
|
||
],
|
||
name: {
|
||
en: "Submission",
|
||
fr: "Sacrifice",
|
||
},
|
||
text: {
|
||
en: "This Pokémon does 30 damage to itself.",
|
||
fr: "Ce Pokémon s’inflige 30 dégâts.",
|
||
},
|
||
damage: 150
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.PSYCHIC,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 3,
|
||
|
||
rarity: Rarity.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Guardians Rising",
|
||
code: "sm2"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|