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

51 lines
891 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: "Mightyena"
},
illustrator: "akagi",
category: "Pokemon",
hp: 120,
types: ["Darkness"],
description: {
id: "Mightyena pasti akan menuruti perintah pelatih yang unggul. Ini adalah perilaku bawaan ketika ia beraktivitas dalam kelompok pada zaman dahulu."
},
stage: "Stage1",
attacks: [{
name: {
id: "Tendangan Menghempaskan"
},
effect: {
id: "Tukar Pokémon Bertarung lawan dengan Pokémon Cadangan. [Pokémon yang akan dimasukkan ke Arena Bertarung dipilih oleh lawan.]"
},
damage: 50,
cost: ["Darkness", "Colorless"]
}, {
name: {
id: "Taring Tajam"
},
damage: 130,
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card