mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-02 20:51:57 +00:00
100
cards/sm/sm7/113.ts
Normal file
100
cards/sm/sm7/113.ts
Normal 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 c’est 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
|
||||
|
Reference in New Issue
Block a user