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

52 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 "../SV6s"
const card: Card = {
set: Set,
name: {
id: "Ambipom"
},
illustrator: "KEIICHIRO ITO",
category: "Pokemon",
hp: 110,
types: ["Colorless"],
description: {
id: "Karena ekornya yang terbagi 2 dapat terampil dalam melakukan berbagai macam hal, tangannya menjadi hampir tidak pernah digunakan."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
id: "Ekor Tega"
},
effect: {
id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan untuk melakukan evolusi. Lempar koin 2 kali. Pilih kartu dari Kartu Pegangan lawan tanpa melihat sisi depan untuk tiap lemparan dengan hasil sisi depan, lihat sisi depan kartu tersebut, lalu kocok kembali ke Deck lawan."
}
}],
attacks: [{
name: {
id: "Menepuk"
},
damage: 100,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card