1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29: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

102
cards/sm/sm8/113.ts Normal file
View File

@ -0,0 +1,102 @@
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: "sm8-113",
localId: 113,
// Card informations
name: {
en: "Hitmontop",
fr: "Kapoera",
},
hp: 80,
type: [
Type.FIGHTING,
],
dexId: 237,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm8/113/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm8/113/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm8/113/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm8/113/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 96,
name: "sowsow"
},
attacks: [{
cost: [
Type.FIGHTING
],
name: {
en: "Rapid Spin",
fr: "Tour Rapide",
},
text: {
en: "Switch this Pokémon with 1 of your Benched Pokémon. If you do, your opponent switches their Active Pokémon with 1 of their Benched Pokémon.",
fr: "Échangez ce Pokémon avec lun de vos Pokémon de Banc. Dans ce cas, votre adversaire échange son Pokémon Actif avec lun de ses Pokémon de Banc.",
},
damage: 30
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Triple Kick",
fr: "Triple Pied",
},
text: {
en: "Flip 3 coins. This attack does 40 damage for each heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 40 dégâts pour chaque côté face.",
},
damage: 40
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Lost Thunder",
code: "sm8"
}
}
export default card