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

59
data-asia/SV/SV5a/001.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "モンジャラ",
'zh-tw': "蔓藤怪",
th: "มอนจารา"
},
illustrator: "Yoriyuki Ikegami",
rarity: "Common",
category: "Pokemon",
dexId: [114],
hp: 80,
types: ["Grass"],
description: {
ja: "ちぎれても 無限に 伸びる ツルの 奥の 正体は いまだ 解明されていない。",
'zh-tw': "藤蔓即使斷了也會繼續無限地生長。藤蔓下的 真面目至今仍是個謎。",
th: "แม้เถาวัลย์จะขาดก็ยืดยาวออกมาได้ไม่มีที่สิ้นสุด ตัวตนลึก ๆ ที่แท้จริงของมัน จนทุกวันนี้ก็ยังพิสูจน์ไม่ได้"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ひっぱたく",
'zh-tw': "重摑",
th: "ตบแรง"
},
damage: 10
}, {
cost: ["Grass", "Colorless"],
name: {
ja: "つるでうつ",
'zh-tw': "藤蔓攻擊",
th: "โจมตีด้วยเถาวัลย์"
},
damage: 30
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card