1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

44 lines
677 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 "../SV3s"
const card: Card = {
set: Set,
name: {
id: "Glimmet"
},
illustrator: "GIDORA",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
description: {
id: "Glimmet menyerap nutrisi dari dinding gua. Kelopak bunga yang terbuat dari kristal beracun menyelimuti tubuh Pokémon ini."
},
stage: "Basic",
attacks: [{
name: {
id: "Serpihan Racun"
},
effect: {
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Racun."
},
damage: 20,
cost: ["Fighting", "Fighting"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card