mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
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 |