1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 04:51:58 +00:00
Files
cards-database/data/Sword & Shield/Sword & Shield/43.ts
Florian Bouillon 2e18aa4aac Sword & Shield Fixes (#84)
* 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
2021-10-26 10:40:03 +02:00

81 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Sword & Shield'
const card: Card = {
name: {
en: "Krabby",
fr: "Krabby",
es: "Krabby",
it: "Krabby",
pt: "Krabby",
de: "Krabby"
},
illustrator: "miki kudo",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
98,
],
hp: 80,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Super Slice",
fr: "Super Tranche",
es: "Supertajo",
it: "Super Trancia",
pt: "Superfatiador",
de: "Superschnippler"
},
effect: {
en: "Flip 2 coins. If either of them is tails, this attack does nothing.",
fr: "Lancez 2 pièces. Si vous obtenez au moins un côté pile, cette attaque ne fait rien.",
es: "Lanza 2 monedas. Si sale cruz en alguna de ellas, este ataque no hace nada.",
it: "Lancia due volte una moneta. Se esce almeno una volta croce, questo attacco non ha effetto.",
pt: "Jogue 2 moedas. Se qualquer uma delas sair coroa, este ataque não fará nada.",
de: "Wirf 2 Münzen. Wenn eine oder beide Münzen Zahl zeigen, hat diese Attacke keine Auswirkungen."
},
damage: 120,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 2,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
description: {
en: "It can be found near the sea. The large pincers grow back if they are torn out of their sockets."
}
}
export default card