1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-02 20:51:57 +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

100
cards/sm/sm7/113.ts Normal file
View File

@@ -0,0 +1,100 @@
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: "sm7-113",
localId: 113,
// Card informations
name: {
en: "Slakoth",
fr: "Parecool",
},
hp: 60,
type: [
Type.COLORLESS,
],
dexId: 287,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm7/113/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/113/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm7/113/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/113/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 0,
name: "Kagemaru Himeno"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Claw",
fr: "Mâchoire",
},
text: {
en: "Flip a coin. If tails, this attack does nothing.",
fr: "Lancez une pièce. Si cest pile, cette attaque ne fait rien.",
},
damage: 20
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Slack Off",
fr: "Paresse",
},
text: {
en: "Heal all damage from this Pokémon. It can't attack during your next turn.",
fr: "Soignez tous les dégâts de ce Pokémon. Il ne peut pas attaquer pendant votre prochain tour.",
},
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Celestial Storm",
code: "sm7"
}
}
export default card