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

63 lines
2.0 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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "ノノクラゲ",
'zh-tw': "原野水母",
th: "โนโนะคุราเกะ"
},
illustrator: "Tomokazu Komiya",
rarity: "Common",
category: "Pokemon",
dexId: [948],
hp: 50,
types: ["Grass"],
description: {
ja: "メノクラゲに 似ているが まったく 別の 種類。 脚は 細いが 走りだせば 時速50キロになる。",
'zh-tw': "看起來像瑪瑙水母,其實是截然不同的種類。雖然腳很細,但跑起來能達到時速50公里。",
th: "มีความคล้ายคลึงกับเมโนคุราเกะแต่ความจริงแล้วเป็นสายพันธุ์ที่ต่างกันโดยสิ้นเชิง แม้จะมีขาเรียวเล็กแต่เมื่อออกวิ่งจะมีความเร็วอยู่ที่ 50 กิโลเมตรต่อชั่วโมง"
},
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
ja: "くっつくほうし",
'zh-tw': "附著孢子",
th: "สปอร์ติดหนึบ"
},
effect: {
ja: "自分の手札から「基本エネルギー」を1枚選び、ベンチポケモンにつける。",
'zh-tw': "從自己的手牌選擇1張「基本【草】能量」卡附於備戰寶可夢身上。",
th: "เลือกการ์ด [พลังงานพื้นฐาน[หญ้า]] 1 ใบจากบนมือฝ่ายเรา ติดที่โปเกมอนบนเบนช์"
}
}, {
cost: ["Grass", "Colorless"],
name: {
ja: "つるでうつ",
'zh-tw': "藤蔓攻擊",
th: "โจมตีด้วยเถาวัลย์"
},
damage: 30
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card