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

51 lines
843 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 "../SV4s"
const card: Card = {
set: Set,
name: {
id: "Grapploct"
},
illustrator: "Sanosuke Sakuma",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
description: {
id: "Grapploct naik ke daratan dan mencari lawan bertarung untuk menguji kemampuannya. Pokémon ini akan kembali ke laut begitu pertarungan selesai."
},
stage: "Stage1",
attacks: [{
name: {
id: "Menjatuhkan Perlahan-lahan"
},
effect: {
id: "Pada akhir giliran lawan berikutnya, Pokémon yang menerima serangan ini KO."
},
damage: 30,
cost: ["Fighting"]
}, {
name: {
id: "Mach Straight"
},
damage: 120,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card