mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
68 lines
2.1 KiB
TypeScript
68 lines
2.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV1V"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "ノノクラゲ",
|
||
'zh-tw': "原野水母",
|
||
th: "โนโนะคุราเกะ",
|
||
id: "Toedscool"
|
||
},
|
||
|
||
illustrator: "Tika Matsuno",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
dexId: [948],
|
||
hp: 60,
|
||
types: ["Grass"],
|
||
|
||
description: {
|
||
ja: "メノクラゲに 似ているが まったく 別の 種類。 脚は 細いが 走りだせば 時速50キロになる。",
|
||
'zh-tw': "看起來像瑪瑙水母,其實是截然不同的種類。雖然腳很細, 但跑起來能達到時速50公里。",
|
||
th: "มีความคล้ายคลึงกับเมโนคุราเกะแต่ความจริงแล้วเป็นสายพันธุ์ที่ต่างกันโดยสิ้นเชิง แม้จะมีขาเรียวเล็กแต่เมื่อออกวิ่งจะมีความเร็วอยู่ที่ 50 กิโลเมตรต่อชั่วโมง",
|
||
id: "Meskipun mirip dengan Tentacool, Pokémon ini merupakan spesies yang berbeda. Kakinya ramping, tetapi kecepatan lari Toedscool mencapai 50 km/jam ketika berlari."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Grass"],
|
||
|
||
name: {
|
||
ja: "キノコのほうし",
|
||
'zh-tw': "蘑菇孢子",
|
||
th: "สปอร์เห็ด",
|
||
id: "Spora Jamur"
|
||
},
|
||
|
||
effect: {
|
||
ja: "相手のバトルポケモンをねむりにする。",
|
||
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。",
|
||
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]",
|
||
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Tidur."
|
||
}
|
||
}, {
|
||
cost: ["Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "ぶつかる",
|
||
'zh-tw': "衝撞",
|
||
th: "กระแทก",
|
||
id: "Menyeruduk"
|
||
},
|
||
|
||
damage: 10
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |