1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 02:59:53 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

81 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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