mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
50 lines
741 B
TypeScript
50 lines
741 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV3s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
id: "Gloom"
|
||
},
|
||
|
||
illustrator: "Haru Akasaka",
|
||
category: "Pokemon",
|
||
hp: 80,
|
||
types: ["Grass"],
|
||
|
||
description: {
|
||
id: "Gloom mengeluarkan madu manis yang terlihat seperti air liur. Sangat lengket dan menempel dengan lekat jika disentuh."
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
id: "Aroma Mengundang"
|
||
},
|
||
|
||
effect: {
|
||
id: "Pilih 1 Pokémon Cadangan lawan, lalu tukar dengan Pokémon Bertarung."
|
||
},
|
||
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
id: "Leaf Step"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Grass"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |