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

44 lines
641 B
TypeScript
Raw Permalink 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 "../SV5s"
const card: Card = {
set: Set,
name: {
id: "Croconaw"
},
illustrator: "Jerky",
category: "Pokemon",
hp: 90,
types: ["Water"],
description: {
id: "Meskipun copot, taring Croconaw akan terus-menerus tumbuh. Di dalam mulutnya, selalu ada 48 taring lengkap."
},
stage: "Stage1",
attacks: [{
name: {
id: "Dorongan Balik"
},
effect: {
id: "Tukar Pokémon ini dengan Pokémon Cadangan."
},
damage: 30,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card