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

63 lines
1.4 KiB
TypeScript
Raw 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 "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ナゾノクサ",
'zh-tw': "走路草",
th: "นาโซโนะคุสะ"
},
illustrator: "Midori Harada",
rarity: "Common",
category: "Pokemon",
dexId: [43],
hp: 50,
types: ["Grass"],
description: {
ja: "昼間は 太陽を 避けるため 冷たい 地面に もぐっている。 月の光を 浴びて 育つ。",
'zh-tw': "白天為了躲避太陽,會鑽進涼爽的地下。藉由沐浴月光來成長。",
th: "ช่วงกลางวันจะมุดอยู่ใต้ดินเย็น ๆ เพื่อหลบดวงอาทิตย์ เติบโตด้วยการอาบแสงจันทร์"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "じょうきげん",
'zh-tw': "好心情",
th: "อารมณ์ดี"
},
effect: {
ja: "自分の山札を1枚引く。",
'zh-tw': "從自己的牌庫抽出1張卡。",
th: "จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา"
}
}, {
cost: ["Grass"],
name: {
ja: "ふむ",
'zh-tw': "踩",
th: "เหยียบ"
},
damage: 10
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card