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

51 lines
865 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: "Drampa"
},
illustrator: "Mékayu",
category: "Pokemon",
hp: 120,
types: ["Colorless"],
description: {
id: "Drampa hidup di pegunungan dengan ketinggian melampaui 3000 m. Walau jarang, Pokémon ini turun dari gunung, datang ke kota, dan bermain dengan anak-anak."
},
stage: "Basic",
attacks: [{
name: {
id: "Menepuk"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
id: "Meriam Geram"
},
effect: {
id: "Jika semua Pokémon Cadangan sendiri memiliki Token Kerusakan, kerusakan yang diberikan bertambah sejumlah 120."
},
damage: "100+",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card