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

56 lines
1019 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: "Infernape"
},
illustrator: "Takumi Wada",
category: "Pokemon",
hp: 140,
types: ["Fire"],
description: {
id: "Pokémon yang memiliki sifat kasar bagaikan api yang berkobar di kepalanya. Infernape tidak terkalahkan dalam hal kecepatan."
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
id: "Tarian Lidah Api"
},
effect: {
id: "Dapat digunakan 1 kali pada giliran sendiri. Pilih Energi Dasar {Api} dan Energi Dasar {Petarung} masing-masing paling banyak 1 lembar dari Kartu Pegangan sendiri, lalu kenakan sesukanya pada Pokémon sendiri."
}
}],
attacks: [{
name: {
id: "Burn Out"
},
effect: {
id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash."
},
damage: 200,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card