mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
56
data-asia/S/S5a/054.ts
Normal file
56
data-asia/S/S5a/054.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S5a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "頭巾混混",
|
||||
th: "ซึรุซึคิน"
|
||||
},
|
||||
|
||||
illustrator: "Yukiko Baba",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "雖然性情非常粗魯,但也有重視家族、夥伴和地盤的一面。",
|
||||
th: "มีนิสัยหยาบคายมากแต่จะให้ความสำคัญกับครอบครัว พวกพ้องและอาณาเขตของตน"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "頭錘",
|
||||
th: "พุ่งหัวชน"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "恐嚇掠奪",
|
||||
th: "ขู่กรรโชก"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在不看正面的情況下,選擇1張對手的手牌,將其丟棄。",
|
||||
th: "เลือกการ์ดบนมือฝ่ายตรงข้าม 1 ใบโดยไม่ดูหน้าการ์ด ทิ้งที่ตำแหน่งทิ้งการ์ด"
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
cost: ["Darkness", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user