mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
63
data-asia/SV/SV1a/019.ts
Normal file
63
data-asia/SV/SV1a/019.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV1a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "アチゲータ",
|
||||
'zh-tw': "炙燙鱷",
|
||||
th: "อาจิเกเตอร์",
|
||||
id: "Crocalor"
|
||||
},
|
||||
|
||||
illustrator: "Hitoshi Ariga",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [910],
|
||||
hp: 110,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
ja: "炎エネルギーと 有り余る 生命力が 交じり 頭上に タマゴ型の 火玉が 現れた。",
|
||||
'zh-tw': "火之能量與過剩的生命力相互結合,使得牠頭上 出現了蛋狀的火球。",
|
||||
th: "พลังงานไฟและพลังชีวิตที่มากล้นนั้นผสมผสานกันทำให้เกิดลูกไฟรูปไข่ขึ้นเหนือหัว",
|
||||
id: "Bola api berbentuk telur yang muncul di kepala Crocalor terbentuk oleh campuran energi api dan vitalitasnya yang melimpah."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
ja: "ひをはく",
|
||||
'zh-tw': "吐火",
|
||||
th: "พ่นอัคคี",
|
||||
id: "Memuntahkan Api"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Fire", "Fire"],
|
||||
|
||||
name: {
|
||||
ja: "ハイパーボイス",
|
||||
'zh-tw': "巨聲",
|
||||
th: "ไฮเปอร์วอยซ์",
|
||||
id: "Hyper Voice"
|
||||
},
|
||||
|
||||
damage: 70
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user