mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
55 lines
1.2 KiB
TypeScript
55 lines
1.2 KiB
TypeScript
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 |