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

60 lines
1.0 KiB
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: "Unfezant"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
hp: 150,
types: ["Colorless"],
description: {
id: "Unfezant memiliki kemampuan terbang yang tinggi. Yang betina unggul dalam stamina untuk terbang, sedangkan yang jantan unggul dalam kecepatan terbang."
},
stage: "Stage2",
attacks: [{
name: {
id: "Reverse Wind"
},
effect: {
id: "Pemain dapat memilih 2 Energi yang dikenakan pada Pokémon Bertarung lawan, lalu mengembalikannya ke Kartu Pegangan lawan."
},
damage: 70,
cost: ["Colorless", "Colorless"]
}, {
name: {
id: "Kekuatan Laten"
},
effect: {
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan."
},
damage: 180,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "H"
}
export default card