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

63 lines
1.4 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 "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "ダグトリオ",
'zh-tw': "三地鼠",
th: "ดักทริโอ",
id: "Dugtrio"
},
illustrator: "Miki Tanaka",
rarity: "Uncommon",
category: "Pokemon",
dexId: [51],
hp: 90,
types: ["Fighting"],
description: {
ja: "3つの 頭が 互い違いに 動くのは まわりの 土を 柔らかくして 掘りやすくするため。",
'zh-tw': "三顆頭會輪流活動,是為了讓周圍的土 變得更鬆更好挖。",
th: "ทั้ง 3 หัวจะสลับกันเคลื่อนไหวเพื่อให้ดินรอบ ๆ นิ่มลงและขุดง่ายขึ้น",
id: "Tiga kepala Dugtrio saling bergerak ke arah yang berbeda-beda untuk melunakkan tanah di sekitarnya agar menjadi lebih mudah untuk digali."
},
stage: "Stage1",
attacks: [{
cost: ["Fighting"],
name: {
ja: "とびだしヘッド",
'zh-tw': "魯莽頭擊",
th: "กระโดดโหม่ง",
id: "Sundulan Meloncat"
},
damage: 40
}, {
cost: ["Fighting", "Fighting"],
name: {
ja: "どろばくだん",
'zh-tw': "泥巴炸彈",
th: "ระเบิดโคลน",
id: "Bom Lumpur"
},
damage: 80
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card