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

60 lines
1.1 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 "../SV3s"
const card: Card = {
set: Set,
name: {
id: "Jirachi"
},
illustrator: "Naoyo Kimura",
category: "Pokemon",
hp: 70,
types: ["Metal"],
description: {
id: "Dikatakan bahwa Jirachi bangun hanya 7 hari dalam 1000 tahun dan menggunakan kekuatan yang dapat mewujudkan harapan apa pun."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
id: "Tudung Bintang"
},
effect: {
id: "Selama Pokémon ini ada di Arena, semua Pokémon Cadangan sendiri tidak menerima efek untuk meletakkan Token Kerusakan akibat serangan yang digunakan oleh Pokémon Basic lawan."
}
}],
attacks: [{
name: {
id: "Energy Charge"
},
effect: {
id: "Pilih paling banyak 2 lembar Energi Dasar dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck."
},
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card