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

70 lines
2.2 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 "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "ニャローテ",
'zh-tw': "蒂蕾喵",
th: "เนียโรเต",
id: "Floragato"
},
illustrator: "nagimiso",
rarity: "Common",
category: "Pokemon",
dexId: [907],
hp: 90,
types: ["Grass"],
description: {
ja: "長い 体毛の下に 隠した ツタを 器用に 操り 硬い つぼみを 敵に 叩きつける。",
'zh-tw': "會靈巧操控長長的體毛下隱藏的藤蔓,將堅硬的 花苞甩向敵人猛打。",
th: "ใช้เถาวัลย์ที่ซ่อนอยู่ภายใต้ขนตามร่างกายที่มีขนาดยาวได้อย่างคล่องแคล่ว และใช้ดอกตูมแข็ง ๆ ฟาดฟันศัตรู",
id: "Floragato mengendalikan sulur ranting yang tersembunyi di bawah bulu panjangnya dengan mahir, lalu membanting kuncup keras ke lawan."
},
stage: "Stage1",
attacks: [{
cost: ["Grass"],
name: {
ja: "タネばくだん",
'zh-tw': "種子炸彈",
th: "ระเบิดเมล็ดพืช",
id: "Bom Benih"
},
damage: 30
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "マジックウィップ",
'zh-tw': "魔法鞭打",
th: "เมจิกวิป",
id: "Magic Whip"
},
damage: 50,
effect: {
ja: "相手のバトルポケモンをベンチポケモンと入れ替える。[バトル場に出すポケモンは相手が選ぶ。]",
'zh-tw': "將對手的戰鬥寶可夢與備戰寶可夢互換。[由對手選擇放置於戰鬥場的寶可夢。]",
th: "สลับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามกับโปเกมอนบนเบนช์ {ฝ่ายตรงข้ามเลือกโปเกมอนที่จะวางบนตำแหน่งต่อสู้}",
id: "Tukar Pokémon Bertarung lawan dengan Pokémon Cadangan. [Pokémon yang akan dimasukkan ke Arena Bertarung dipilih oleh lawan.]"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card