mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
63
data-asia/SV/SV1S/042.ts
Normal file
63
data-asia/SV/SV1S/042.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV1S"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "メグロコ",
|
||||
'zh-tw': "黑眼鱷",
|
||||
th: "เมะกุโรโกะ",
|
||||
id: "Sandile"
|
||||
},
|
||||
|
||||
illustrator: "Tomokazu Komiya",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [551],
|
||||
hp: 70,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
ja: "砂の中に 潜り 泳ぐように 移動。 敵に みつからないためと 体温を 下げない 知恵 なのだ。",
|
||||
'zh-tw': "潛藏在沙中像游泳一樣移動。這是種兼具不被敵人發現和 保持體溫效果的生存智慧。",
|
||||
th: "ดำลงไปในทรายแล้วเคลื่อนที่เหมือนว่ายอยู่ข้างใน เป็นวิธีการอันชาญฉลาดที่ช่วยไม่ให้ศัตรูเจอตัวและไม่ให้ตัวเย็นลง",
|
||||
id: "Sandile menyelam dan berpindah seperti sedang berenang di dalam pasir. Pengetahuan yang berguna untuk melindungi diri dari musuh dan agar suhu tubuhnya tidak menurun."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
ja: "かじる",
|
||||
'zh-tw': "咬",
|
||||
th: "แทะ",
|
||||
id: "Menggerogot"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting"],
|
||||
|
||||
name: {
|
||||
ja: "ぶつかる",
|
||||
'zh-tw': "衝撞",
|
||||
th: "กระแทก",
|
||||
id: "Menyeruduk"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user