1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

73 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Celestial Storm'
const card: Card = {
name: {
en: "Slaking",
fr: "Monaflèmit",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
289,
],
hp: 160,
types: [
"Colorless",
],
evolveFrom: {
en: "Vigoroth",
fr: "Vigoroth",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Lazy",
fr: "Fainéant",
},
effect: {
en: "As long as this Pokémon is your Active Pokémon, your opponent's Pokémon in play have no Abilities, except for Lazy.",
fr: "Tant que ce Pokémon est votre Pokémon Actif, les Pokémon en jeu de votre adversaire nont pas de talent, à lexception de Fainéant.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Critical Move",
fr: "Mouvement Décisif",
},
effect: {
en: "Discard an Energy from this Pokémon. It can't attack during your next turn.",
fr: "Défaussez une Énergie de ce Pokémon. Il ne peut pas attaquer pendant votre prochain tour.",
},
damage: 160,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 3,
}
export default card