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

71 lines
2.3 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 "../SV3"
const card: Card = {
set: Set,
name: {
ja: "オーロット",
'zh-tw': "朽木妖",
th: "โอร็อต"
},
illustrator: "Anesaki Dynamic",
rarity: "Uncommon",
category: "Pokemon",
dexId: [709],
hp: 140,
types: ["Grass"],
description: {
ja: "足の 先から 細い 根っこを 伸ばして 森の 木々と 結びつき 自在に 操る 力を もつ。",
'zh-tw': "腳尖伸出來的根鬚能連結森林中的樹木,並且自由自在地加以操縱。",
th: "ยืดรากผอมเรียวออกจากปลายเท้าและผูกติดกับต้นไม้หลาย ๆ ต้นในป่า มีพลังควบคุมได้ตามใจชอบ"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "もりのしょうき",
'zh-tw': "森林瘴氣",
th: "ไอพิษในป่า"
},
effect: {
ja: "このポケモンがバトル場にいるかぎり、ポケモンチェックのたび、相手のバトルポケモンにダメカンを1個のせる。",
'zh-tw': "只要這隻寶可夢在戰鬥場上每次寶可夢檢查時在對手的戰鬥寶可夢身上放置1個傷害指示物。",
th: "ตราบใดที่โปเกมอนนี้ยังอยู่บนตำแหน่งต่อสู้ ทุกครั้งที่ตรวจสอบโปเกมอน ให้วางตัวนับแดเมจ 1 ตัวบนโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม"
}
}],
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "とじこめる",
'zh-tw': "禁錮",
th: "ขังไว้"
},
damage: 100,
effect: {
ja: "次の相手の番、このワザを受けたポケモンは、にげられない。",
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。",
th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card