1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00

55 lines
1.6 KiB
TypeScript
Raw Permalink 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ドッコラー",
'zh-tw': "搬運小匠",
th: "ด็อคโคเรอร์"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Kouki Saitou",
dexId: [532],
hp: 80,
types: ["Fighting"],
description: {
ja: "角材を 振り回して 戦う。 重い 角材を 苦もなく 持つようになると 進化は 近い。",
'zh-tw': "會亂揮木材來戰鬥。如果可以 不費勁地搬起沉重的木材, 就代表牠即將要進化了。",
th: "ต่อสู้ด้วยการเหวี่ยงท่อนไม้สี่เหลี่ยม เมื่อมันสามารถยกท่อนไม้สี่เหลี่ยมที่หนักได้อย่างสบาย ๆ เมื่อไหร่ แปลว่าใกล้วิวัฒนาการ"
},
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
ja: "ぜんりょくパンチ",
'zh-tw': "全力拳",
th: "ปล่อยหมัดเต็มกำลัง"
},
damage: 40,
effect: {
ja: "コインを1回投げウラなら、このワザは失敗。",
'zh-tw': "擲1次硬幣若為反面則這個招式失敗。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกก้อย ท่าต่อสู้นี้จะล้มเหลว"
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card