1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00

54 lines
1.4 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: "ryoma uratsuka",
category: "Pokemon",
hp: 50,
types: ["Grass"],
description: {
'zh-tw': "沐浴月光就會開始活動。為了四處散播種子, 會在夜晚到處走動。",
th: "เริ่มขยับตัวเมื่อได้อาบแสงจันทร์ จะเดินวนไปมาเพื่อโปรยเมล็ดพันธุ์ในยามกลางคืน",
ja: "月の光を 浴びて 動きだす。 夜のあいだに タネを あちこちに ばらまくため 歩きまわる。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "飛葉回力鏢",
th: "บูมเมอแรงใบไม้",
ja: "はっぱブーメラン"
},
effect: {
'zh-tw': "擲2次硬幣造成正面出現的次數×10點傷害。",
th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x10",
ja: "コインを2回投げ、オモテの数×10ダメージ。"
},
damage: "10×",
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [43]
}
export default card