mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
60 lines
847 B
TypeScript
60 lines
847 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Lost Origin"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Shellos",
|
|
fr: "Sancoki",
|
|
es: "Shellos",
|
|
it: "Shellos",
|
|
pt: "Shellos",
|
|
de: "Schalellos"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Water"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Rain Splash",
|
|
fr: "Pluie Éclaboussante",
|
|
es: "Golpe de Lluvia",
|
|
it: "Spruzzapioggia",
|
|
pt: "Chuva Borrifante",
|
|
de: "Regenplatscher"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Colorless", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Surf",
|
|
fr: "Surf",
|
|
es: "Surf",
|
|
it: "Surf",
|
|
pt: "Surfar",
|
|
de: "Surfer"
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
"normal": true,
|
|
"reverse": true,
|
|
"holo": false
|
|
}
|
|
}
|
|
|
|
export default card |