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

54 lines
920 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: "Houndour"
},
illustrator: "Scav",
category: "Pokemon",
hp: 50,
types: ["Darkness"],
description: {
id: "Houndour memiliki kecerdasan untuk berburu sambil berkomunikasi dengan kawanannya menggunakan raungan yang berbeda."
},
stage: "Basic",
attacks: [{
name: {
id: "Kerja Tim Gerombolan"
},
effect: {
id: "Kenakan Energi Dasar {Kegelapan} masing-masing 1 lembar dari Deck pada semua Houndour di Cadangan sendiri. Kemudian, kocok Deck."
},
cost: ["Darkness"]
}, {
name: {
id: "Taring Tenaga Dalam"
},
effect: {
id: "Lempar koin 1 kali. Jika hasilnya sisi belakang, serangan ini gagal."
},
damage: 30,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card