1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

56
data-asia/S/S5I/031.ts Normal file
View File

@ -0,0 +1,56 @@
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