mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S5I"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "天蠍王",
|
||
th: "ไกลออน"
|
||
},
|
||
|
||
illustrator: "ryoma uratsuka",
|
||
category: "Pokemon",
|
||
hp: 120,
|
||
types: ["Fighting"],
|
||
|
||
description: {
|
||
'zh-tw': "可不發出振翅聲而在空中飛行。先用長長的尾巴攫住獵物,再用牙齒朝弱點給予一刺。",
|
||
th: "บินบนท้องฟ้าได้แบบไร้เสียง จะใช้หางที่ยาวจับเหยื่อแล้วใช้เขี้ยวแทงจุดอ่อน"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "雜技",
|
||
th: "อะโครแบท"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "擲2次硬幣,增加正面出現的次數×40點傷害。",
|
||
th: "ทอยเหรียญ 2 ครั้ง แดเมจเพิ่มตามจำนวนครั้งที่ออกหัว x40"
|
||
},
|
||
|
||
damage: "20+",
|
||
cost: ["Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "斷頭鉗",
|
||
th: "กรรไกรกิโยติน"
|
||
},
|
||
|
||
damage: 90,
|
||
cost: ["Fighting", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |