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

55 lines
932 B
TypeScript
Raw Permalink 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: "Houndoom"
},
illustrator: "Haru Akasaka",
category: "Pokemon",
hp: 130,
types: ["Darkness"],
description: {
id: "Jika menerima luka bakar akibat semburan api Houndoom, luka tersebut akan terus sakit sampai kapan pun."
},
stage: "Stage1",
attacks: [{
name: {
id: "Menyerang Gagah Berani"
},
effect: {
id: "Jika Pokémon Bertarung lawan adalah Pokémon Evolusi, kerusakan yang diberikan bertambah sejumlah 70."
},
damage: "50+",
cost: ["Darkness", "Colorless"]
}, {
name: {
id: "Shadow Slash"
},
effect: {
id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash."
},
damage: 130,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card