mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 00:22:09 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
81 lines
1.5 KiB
TypeScript
81 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Sword & Shield'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Shellder",
|
||
fr: "Kokiyas",
|
||
es: "Shellder",
|
||
it: "Shellder",
|
||
pt: "Shellder",
|
||
de: "Muschas"
|
||
},
|
||
|
||
illustrator: "Sekio",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
90,
|
||
],
|
||
|
||
hp: 70,
|
||
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Water Splash",
|
||
fr: "Éclaboussure",
|
||
es: "Chapoteo Agua",
|
||
it: "Acquasplash",
|
||
pt: "Espirro d'Água",
|
||
de: "Wasserplatscher"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, this attack does 20 more damage.",
|
||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.",
|
||
es: "Lanza 1 moneda. Si sale cara, este ataque hace 20 puntos de daño más.",
|
||
it: "Lancia una moneta. Se esce testa, questo attacco infligge 20 danni in più.",
|
||
pt: "Jogue 1 moeda. Se sair cara, este ataque causará 20 pontos de dano a mais.",
|
||
de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 20 Schadenspunkte mehr zu."
|
||
},
|
||
damage: "20+",
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
description: {
|
||
en: "It swims facing backward by opening and closing its two-piece shell. It is surprisingly fast."
|
||
}
|
||
}
|
||
|
||
export default card
|