1
0
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:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

63
data-asia/SV/SV2a/051.ts Normal file
View File

@ -0,0 +1,63 @@
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