mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-31 03:50:46 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
55
data-asia/SV/SVAL/003.ts
Normal file
55
data-asia/SV/SVAL/003.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SVAL"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "炙燙鱷",
|
||||
th: "อาจิเกเตอร์",
|
||||
id: "Crocalor"
|
||||
},
|
||||
|
||||
illustrator: "kantaro",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "聲帶和火囊的閥緊鄰在一起。會一邊發出嘶啞的聲音, 一邊噴灑火焰。",
|
||||
th: "เส้นเสียงและวาล์วของถุงไฟมีความสัมพันธ์กันอย่างใกล้ชิด พ่นไฟออกมาพร้อมกับส่งเสียงแหบ",
|
||||
id: "Katup pita suara dan kantong api Crocalor saling terhubung. Pokémon ini menyemburkan api sambil mengeluarkan suara serak."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "咬住",
|
||||
th: "กัดติด",
|
||||
id: "Menggigit"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Fire", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "滾動衝撞",
|
||||
th: "กลิ้งโจมตี",
|
||||
id: "Tubrukan Menggelinding"
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
cost: ["Fire", "Fire", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user