1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

94 lines
1.5 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: "dp2-34",
localId: 34,
// Card informations
name: {
en: "Slaking",
},
hp: 140,
type: [
Type.COLORLESS,
],
dexId: 289,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp2/34/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp2/34/high.png",
},
},
evolveFrom: {
en: "Vigoroth",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
abilities: [{
id: 755,
type: AbilityType.POKEPOWER,
name: {
en: "Energetic Impulse",
},
text: {
en: "Once during your turn (before your attack), if Slaking is your Active Pokémon, you may flip a coin. If heads, Slaking's Lazy Blow attack's base damage is 130 during this turn. If tails, Slaking can't attack or retreat during this turn. (If Slaking is no longer your Active Pokémon, this effect ends.)",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Lazy Blow",
},
damage: 50
}],
weaknesses: [{
type: Type.FIGHTING,
value: "+30"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Mysterious Treasures",
code: "dp2"
}
}
export default card