1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

57 lines
1.3 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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