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

54 lines
927 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 "../SV4s"
const card: Card = {
set: Set,
name: {
id: "Chien-Pao"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
hp: 120,
types: ["Water"],
description: {
id: "Chien-Pao adalah, kebencian orang-orang yang meninggal oleh pedang pada zaman dahulu menyelimuti dirinya dengan salju lalu berubah menjadi Pokémon."
},
stage: "Basic",
attacks: [{
name: {
id: "Snow Bring"
},
effect: {
id: "Pilih paling banyak 2 lembar Energi Dasar {Air} dari Trash sendiri, lalu kenakan pada 1 Pokémon sendiri."
},
cost: ["Water"]
}, {
name: {
id: "Wrath Blade"
},
effect: {
id: "Pilih 2 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash."
},
damage: 130,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card