1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

65 lines
1.8 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "オーロット",
'zh-tw': "朽木妖",
th: "โอร็อต"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Oswaldo KATO",
dexId: [709],
hp: 120,
types: ["Grass"],
description: {
ja: "森に 棲む ポケモンには とても 優しい。 頭の しげみを 棲み処にされても 気にしない。",
'zh-tw': "對住在森林裡的寶可夢 非常親切,就算被住進了 頭上那叢葉子裡也毫不在意。",
th: "อ่อนโยนต่อเหล่าโปเกมอนที่อาศัยอยู่ในป่าเป็นอย่างมาก แม้พุ่มไม้บนหัวจะถูกเอาไปทำเป็นที่อยู่อาศัยก็ไม่สนใจ"
},
stage: "Stage1",
attacks: [{
cost: ["Grass", "Colorless"],
name: {
ja: "ギガドレイン",
'zh-tw': "終極吸取",
th: "กิก้าเดรน"
},
damage: 50,
effect: {
ja: "相手のバトルポケモンに与えたダメージぶん、このポケモンのHPを回復する。",
'zh-tw': "將這隻寶可夢恢復對對手的戰鬥寶可夢造成的傷害相同數值的HP。",
th: "ฟื้นฟู HP ของโปเกมอนนี้ ตามจำนวนแดเมจที่ทำกับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม"
}
}, {
cost: ["Grass", "Grass", "Colorless"],
name: {
ja: "フォレストダンプ",
'zh-tw': "森林拋擲",
th: "ฟอเรสต์ดัมป์"
},
damage: 130
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card