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

52 lines
985 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: "Glimmora ex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 270,
types: ["Fighting"],
stage: "Stage1",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
id: "Medan Debu"
},
effect: {
id: "Selama Pokémon ini ada di Arena Bertarung, jumlah Pokémon yang dapat dimasukkan lawan ke Cadangan menjadi 3. Jika ada 4 atau lebih Pokémon di Cadangan lawan, lawan membuang Pokémon Cadangan ke Trash hingga jumlah Pokémon di Cadangan menjadi 3. [Efek yang mengubah jumlah Cadangan mengutamakan efek yang jumlahnya lebih sedikit.]"
}
}],
attacks: [{
name: {
id: "Poison Gem"
},
effect: {
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Racun."
},
damage: 140,
cost: ["Fighting", "Fighting"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card