1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

106
cards/sm/sm2/65.ts Normal file
View File

@ -0,0 +1,106 @@
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 sinflige 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