mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 08:32:10 +00:00
105 lines
1.9 KiB
TypeScript
105 lines
1.9 KiB
TypeScript
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: "pl1-16",
|
|
localId: 16,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Slaking",
|
|
fr: "Monaflemit",
|
|
},
|
|
|
|
hp: 150,
|
|
|
|
type: [
|
|
Type.COLORLESS,
|
|
],
|
|
|
|
dexId: 289,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl1/16/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl1/16/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl1/16/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl1/16/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Vigoroth",
|
|
fr: "Vigoroth",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE2,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 8,
|
|
name: "Masakazu Fukuda"
|
|
},
|
|
|
|
abilities: [{
|
|
id: 533,
|
|
type: AbilityType.POKEBODY,
|
|
name: {
|
|
en: "Lazy Paunch",
|
|
fr: "Ventre paresseux",
|
|
},
|
|
text: {
|
|
en: "If Slaking used any attacks during your last turn, Slaking can't attack.",
|
|
fr: "Si Monaflemit a utilisé des attaques lors de votre tour précédent, il ne peut pas attaquer.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.COLORLESS,
|
|
Type.COLORLESS,
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Best Dash",
|
|
fr: "Meilleure ruée",
|
|
},
|
|
text: {
|
|
en: "During your opponent's next turn, any damage done to Slaking by attacks is increased by 50 (after applying Weakness and Resistance).",
|
|
fr: "Lors du prochain tour de votre adversaire, tous dégâts infligés à Monaflemit par des attaques sont augmentés de 50 (après application de la Faiblesse et de la Résistance).",
|
|
},
|
|
damage: 150
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.FIGHTING,
|
|
value: "+30"
|
|
}],
|
|
|
|
|
|
|
|
retreat: 4,
|
|
|
|
rarity: Rarity.RareHolo,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Platinum",
|
|
code: "pl1"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|