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

54 lines
917 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 "../SV6s"
const card: Card = {
set: Set,
name: {
id: "Chi-Yu"
},
illustrator: "Oku",
category: "Pokemon",
hp: 110,
types: ["Fire"],
description: {
id: "Chi-Yu adalah perasaan iri dan dengki yang berkumpul ke magatama yang menjadi api pemicu banyaknya permusuhan. Ia menyelimuti dirinya dengan api, lalu berubah menjadi Pokémon."
},
stage: "Basic",
attacks: [{
name: {
id: "Mengambil"
},
effect: {
id: "Ambil 2 kartu dari atas Deck sendiri."
},
cost: ["Colorless"]
}, {
name: {
id: "Ground Melt"
},
effect: {
id: "Jika ada Stadium di Arena, kerusakan yang diberikan bertambah sejumlah 60. Setelah itu, buang Stadium tersebut ke Trash."
},
damage: "60+",
cost: ["Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card