mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 21:02:15 +00:00
103 lines
2.4 KiB
TypeScript
103 lines
2.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Furious Fists'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Slaking",
|
||
fr: "Monaflèmit",
|
||
es: "Slaking",
|
||
it: "Slaking",
|
||
pt: "Slaking",
|
||
de: "Letarking"
|
||
},
|
||
illustrator: "PLANETA",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
289,
|
||
],
|
||
hp: 150,
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
evolveFrom: {
|
||
en: "Vigoroth",
|
||
fr: "Vigoroth",
|
||
es: "Vigoroth",
|
||
it: "Vigoroth",
|
||
pt: "Vigoroth",
|
||
de: "Muntier"
|
||
},
|
||
stage: "Stage2",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Amnesia",
|
||
fr: "Amnésie",
|
||
es: "Amnesia",
|
||
it: "Amnesia",
|
||
pt: "Amnésia",
|
||
de: "Amnesie"
|
||
},
|
||
effect: {
|
||
en: "Choose 1 of your opponent's Active Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.",
|
||
fr: "Choisissez l'une des attaques du Pokémon Actif de votre adversaire. Ce dernier ne peut pas utiliser l'attaque choisie pendant le prochain tour de votre adversaire.",
|
||
es: "Elige 1 de los ataques del Pokémon Activo de tu rival. Ese Pokémon no puede usar ese ataque durante el próximo turno de tu rival.",
|
||
it: "Scegli un attacco del Pokémon attivo del tuo avversario. Durante il prossimo turno del tuo avversario, quel Pokémon non potrà utilizzarlo.",
|
||
pt: "Escolha 1 dos ataques do Pokémon Ativo do seu oponente. Esse Pokémon não poderá usar esse ataque durante a próxima vez de jogar do seu oponente.",
|
||
de: "Wähle 1 Angriff des Aktiven Pokémon deines Gegners. Dieses Pokémon kann den gewählten Angriff während des nächsten Zuges deines Gegners nicht einsetzen."
|
||
},
|
||
damage: 50,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Knuckle Sandwich",
|
||
fr: "Choc Poing",
|
||
es: "Puño a Bocajarro",
|
||
it: "Schiacciatina",
|
||
pt: "Soco Falso",
|
||
de: "Keile"
|
||
},
|
||
effect: {
|
||
en: "Discard an Energy attached to this Pokémon.",
|
||
fr: "Défaussez une Énergie attachée à ce Pokémon.",
|
||
es: "Descarta 1 Energía unida a este Pokémon.",
|
||
it: "Scarta un'Energia assegnata a questo Pokémon.",
|
||
pt: "Descarte uma Energia ligada a este Pokémon.",
|
||
de: "Lege 1 an dieses Pokémon angelegte Energie auf deinen Ablagestapel."
|
||
},
|
||
damage: 120,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 4,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|