1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00

51 lines
861 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 "../SV5s"
const card: Card = {
set: Set,
name: {
id: "Dhelmise"
},
illustrator: "Saya Tsuruta",
category: "Pokemon",
hp: 130,
types: ["Grass"],
description: {
id: "Dhelmise adalah ganggang yang mengambang di dasar laut, menempel dan mengambil alih bagian dari kapal karam, lalu terlahir kembali sebagai Pokémon hantu."
},
stage: "Basic",
attacks: [{
name: {
id: "Serangan Berputar"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}, {
name: {
id: "Steel Anchor"
},
effect: {
id: "Jika ada Pokémon {Logam} di Cadangan sendiri, kerusakan yang diberikan bertambah sejumlah 80."
},
damage: "80+",
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card