mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-31 19:59:53 +00:00
59 lines
1.7 KiB
TypeScript
59 lines
1.7 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Alolan Grimer",
|
|
fr: "Tadmorvd'Alola",
|
|
es: "Grimerde Alola",
|
|
it: "Grimerdi Alola",
|
|
de: "Alola-Sleima",
|
|
'pt-br': "Grimerde Alola",
|
|
ko: "알로라질퍽이"
|
|
},
|
|
|
|
illustrator: "Akira Komayama",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Darkness"],
|
|
|
|
description: {
|
|
en: "There are a hundred or so of them living in Alola's waste-disposal site. They're all hard workers who eat a lot of trash.",
|
|
fr: "Dans les décharges d'Alola, une centaine d'entre\neux dévorent les immondices avec diligence.",
|
|
es: "En los vertederos de Alola habitan unos 100\nejemplares que devoran la basura con diligencia.",
|
|
it: "Negli impianti di smaltimento rifiuti di Alola ne vivono circa\n100 esemplari che lavorano sodo mangiando rifiuti in quantità.",
|
|
de: "Die Müllanlagen Alolas beherbergen rund hundert\nExemplare dieses Pokémon. Sie sind fleißig dabei,\nriesige Mengen an Müll zu vertilgen.",
|
|
'pt-br': "Há cerca de cem deles vivendo no lixão de Alola.\nEles todos trabalham duro e comem muito lixo.",
|
|
ko: "알로라의 쓰레기 처리장에서는\n약 100마리가 살고 있다. 모두\n쓰레기를 많이 먹는 유능한 일꾼이다."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Sludge Toss",
|
|
fr: "Giclée Vaseuse",
|
|
es: "Lanzamiento de Residuos",
|
|
it: "Lanciamelma",
|
|
de: "Schleimwurf",
|
|
'pt-br': "Arremesso de Lodo",
|
|
ko: "오물던지기"
|
|
},
|
|
|
|
damage: 30,
|
|
cost: ["Darkness", "Colorless"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 2,
|
|
boosters: ["lunala"]
|
|
}
|
|
|
|
export default card |