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

56 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 "../SV4s"
const card: Card = {
set: Set,
name: {
id: "Porygon-Z"
},
illustrator: "hatachu",
category: "Pokemon",
hp: 150,
types: ["Colorless"],
description: {
id: "Ada yang mengatakan bahwa penambahan program membuat Pokémon ini berevolusi, tapi Porygon-Z merupakan evolusi atau tidak masih menjadi perdebatan pada komunitas cendekiawan."
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
id: "Bug Turbo"
},
effect: {
id: "Dapat digunakan 1 kali pada giliran sendiri. Lempar koin 1 kali. Jika hasilnya sisi depan, pilih paling banyak 4 lembar Energi Dasar dari Trash sendiri, lalu kenakan pada Pokémon ini. Jika hasilnya sisi belakang, pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash."
}
}],
attacks: [{
name: {
id: "Energy Attack"
},
effect: {
id: "Serangan ini memberikan kerusakan sejumlah 40 untuk tiap Energi yang dikenakan pada Pokémon ini."
},
damage: "40×",
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card