mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
feat(asian): Updated SV6 and added SV6a & SV6s (#502)
This commit is contained in:
56
data-asia/SV/SV6s/033.ts
Normal file
56
data-asia/SV/SV6s/033.ts
Normal file
@ -0,0 +1,56 @@
|
||||
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
|
Reference in New Issue
Block a user