1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

93 lines
2.5 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",
es: "Slaking",
it: "Slaking",
pt: "Slaking",
de: "Letarking"
},
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",
es: "Perezoso",
it: "Fannullone",
pt: "Preguiçoso",
de: "Faulheit"
},
effect: {
en: "As long as this Pokémon is your Active Pokémon, your opponents 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.",
es: "Mientras este Pokémon sea tu Pokémon Activo, los Pokémon en juego de tu rival no tienen ninguna habilidad, excepto Perezoso.",
it: "Fintanto che questo Pokémon è il tuo Pokémon attivo, le abilità dei Pokémon in gioco del tuo avversario non hanno effetto, a eccezione di Fannullone.",
pt: "Enquanto este Pokémon for o seu Pokémon Ativo, os Pokémon em jogo do seu oponente não têm Habilidades, exceto por Preguiçoso.",
de: "Solang dieses Pokémon dein Aktives Pokémon ist, haben die Pokémon deines Gegners im Spiel keine Fähigkeiten, außer Faulheit."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Critical Move",
fr: "Mouvement Décisif",
es: "Ataque Crítico",
it: "Criticomossa",
pt: "Movimento Crítico",
de: "Entscheidung"
},
effect: {
en: "Discard an Energy from this Pokémon. It cant attack during your next turn.",
fr: "Défaussez une Énergie de ce Pokémon. Il ne peut pas attaquer pendant votre prochain tour.",
es: "Descarta 1 Energía de este Pokémon. No puede atacar durante tu próximo turno.",
it: "Scarta unEnergia assegnata a questo Pokémon. Non può attaccare durante il tuo prossimo turno.",
pt: "Descarte 1 Energia deste Pokémon. Este Pokémon não poderá atacar durante a sua próxima vez de jogar.",
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel. Es kann während deines nächsten Zuges nicht angreifen."
},
damage: 160,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 3,
}
export default card