1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

43 lines
967 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../S5R"
const card: Card = {
set: Set,
name: {
'zh-tw': "搬運小匠",
th: "ด็อคโคเรอร์"
},
illustrator: "Mina Nakai",
category: "Pokemon",
hp: 80,
types: ["Fighting"],
description: {
'zh-tw': "如果搬運小匠可以搬起自己體重3倍左右的木材,就代表牠進化的日子要到了。",
th: "ด็อคโคเรอร์ที่เริ่มยกท่อนไม้สี่เหลี่ยมขนาดประมาณ 3 เท่าของตัวเองได้ ก็ใกล้ถึงวันที่ตัวเองจะวิวัฒนาการ"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "拍擊",
th: "ปัด"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card