1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

71 lines
937 B
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 '../FireRed & LeafGreen'
const card: Card = {
name: {
en: "Krabby",
fr: "Krabby",
de: "Krabby"
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
98,
],
hp: 50,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Irongrip",
fr: "Poigne de fer",
de: "Irongrip"
},
damage: 10,
},
{
cost: [
"Water",
],
name: {
en: "Nap",
fr: "Tit'sieste",
de: "Nap"
},
effect: {
en: "Remove 2 damage counters from Krabby (remove 1 if there is only 1).",
fr: "Retirez à Krabby 2 marqueurs de dégât (ou 1 s'il n'y en a qu'1).",
de: "Remove 2 damage counters from Krabby (remove 1 if there is only 1)."
},
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card