mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
54
data-asia/SV/SV5s/033.ts
Normal file
54
data-asia/SV/SV5s/033.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV5s"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
id: "Centiskorch"
|
||||
},
|
||||
|
||||
illustrator: "Krgc",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
id: "Suhu tubuh Centiskorch saat memancarkan panas mencapai sekitar 800 ºC. Pokémon ini akan loncat menyerang sambil mengelokkan tubuhnya bagaikan pecut."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
id: "Menghanguskan"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Luka Bakar."
|
||||
},
|
||||
|
||||
cost: ["Fire"]
|
||||
}, {
|
||||
name: {
|
||||
id: "Embusan Hitam Gosong"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Jika Pokémon Bertarung lawan tidak mengalami kondisi Luka Bakar, serangan ini gagal."
|
||||
},
|
||||
|
||||
damage: 180,
|
||||
cost: ["Fire", "Fire"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user