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

57
data-asia/S/S12/004.ts Normal file
View File

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