1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-11 08:21:59 +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

93
cards/dp/dp2/34.ts Normal file
View File

@@ -0,0 +1,93 @@
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