mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-21 07:39:54 +00:00
58 lines
1.4 KiB
TypeScript
58 lines
1.4 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Shellder",
|
|
fr: "Kokiyas",
|
|
es: "Shellder",
|
|
it: "Shellder",
|
|
de: "Muschas",
|
|
'pt-br': "Shellder",
|
|
ko: "셀러"
|
|
},
|
|
|
|
illustrator: "Midori Harada",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Water"],
|
|
|
|
description: {
|
|
en: "It is encased in a shell that is harder than diamond. Inside, however, it is surprisingly tender.",
|
|
fr: "Une coquille plus dure que le diamant le protège.\nIl est toutefois étonnamment tendre à l'intérieur.",
|
|
es: "Está metido en una concha más dura que el\ndiamante, pero tiene un cuerpo muy blando.",
|
|
it: "La conchiglia esterna è più dura del diamante.\nL'interno, invece, è sorprendentemente morbido.",
|
|
de: "Seine Schale ist härter als Diamant. Im Inneren ist\nes jedoch überraschend weich.",
|
|
'pt-br': "Este Pokémon é envolto em uma concha\nmais dura que diamante. O seu interior,\nporém, é surpreendentemente macio.",
|
|
ko: "다이아몬드보다 단단한\n껍데기에 싸여 있지만\n속은 의외로 말랑하다."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Tackle",
|
|
fr: "Charge",
|
|
es: "Placaje",
|
|
it: "Azione",
|
|
de: "Tackle",
|
|
'pt-br': "Investida",
|
|
ko: "몸통박치기"
|
|
},
|
|
|
|
damage: 10,
|
|
cost: ["Water"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card |