1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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/S/S12/005.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨蔓藤",
th: "โมจัมโบ",
ja: "モジャンボ"
},
illustrator: "zig",
category: "Pokemon",
hp: 150,
types: ["Grass"],
description: {
'zh-tw': "最近的研究發現,牠這雙能夠自由伸縮的手臂其實 是由成束的藤蔓形成的。",
th: "จากงานวิจัยล่าสุดพบว่า แขน 2 ข้างที่ยืดยาวได้อย่างอิสระนั้น ที่จริงแล้วคือเถาวัลย์ที่มัดติดกันอยู่นั่นเอง",
ja: "自在に 伸びる 2本の 腕は じつは ツルが 束になったものと 最近の 研究で わかった。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "吸附青藤",
th: "เถาวัลย์ยึดติด",
ja: "すいつくつる"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。",
th: "ฟื้นฟู HP ของโปเกมอนนี้ [30]",
ja: "このポケモンのHPを「30」回復する。"
},
damage: 50,
cost: ["Grass", "Colorless"]
}, {
name: {
'zh-tw': "頭突",
th: "ตบหนัก",
ja: "ぶちかます"
},
damage: 130,
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 4,
regulationMark: "F",
rarity: "Uncommon",
dexId: [465]
}
export default card