mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49:19 +00:00
110
cards/xy/xy12/59.ts
Normal file
110
cards/xy/xy12/59.ts
Normal file
@ -0,0 +1,110 @@
|
||||
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: "xy12-59",
|
||||
localId: 59,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Machamp",
|
||||
fr: "Mackogneur",
|
||||
},
|
||||
|
||||
hp: 160,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 68,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy12/59/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy12/59/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy12/59/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy12/59/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Machoke",
|
||||
fr: "Machopeur",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 5,
|
||||
name: "Ken Sugimori"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 622,
|
||||
type: AbilityType.TALENT,
|
||||
name: {
|
||||
en: "Counterattack",
|
||||
},
|
||||
text: {
|
||||
en: "If this Pokémon is your Active Pokémon and is damaged by an opponent's attack (even if this Pokémon is Knocked Out), put 3 damage counters on the Attacking Pokémon.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "Seismic Toss",
|
||||
fr: "Talent : Contre-Attaque",
|
||||
},
|
||||
text: {
|
||||
fr: "Si ce Pokémon est votre Pokémon Actif et qu'il subit les dégâts d'une attaque de votre adversaire (même si ce Pokémon est mis K.O.), placez 3 marqueurs de dégâts sur le Pokémon Attaquant.",
|
||||
},
|
||||
damage: 120
|
||||
},{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
fr: "Frappe Atlas",
|
||||
},
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Evolutions",
|
||||
code: "xy12"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user