Draft:Potion of object detection: Difference between revisions

From Omega Wiki
Jump to navigation Jump to search
重写卷轴与药水总览、全部种类及别名(0.90.4 独立研究草稿)
 
为已保存草稿补齐章节目录、条件表格与可见源码 References,保留 Draft 状态
Line 1: Line 1:
{{Version box|version=0.90.4}}
{{Version box|version=0.90.4}}
{{Consumable infobox|name=Potion of object detection|kind=Potion|glyph=!|color=light-green|value=10|level=1|weight=20|appearance=Random container|cursed=Potion of object detection}}
{{Consumable infobox|name=Potion of object detection|kind=Potion|glyph=!|color=light-green|value=10|level=1|weight=20|appearance=Random container|cursed=Potion of object detection}}
A '''potion of object detection''' briefly displays the locations of objects lying on the current map. It helps locate loot, but does not identify the objects or show everything carried by creatures.
A '''potion of object detection''' briefly displays the locations of objects lying on the current map. It helps locate loot, but does not identify the objects or show everything carried by creatures.<ref name="iinit-h-142">{{Source|iinit.h|142}}.</ref>
 
__TOC__


== Generation ==
== Generation ==
This item-level-1 ordinary [[Draft:Potion|potion]] can be found in random loot, at [[Draft:Knight's Pawn Shop|the pawn shop]], or through [[Draft:Scroll of acquirement|acquirement]].
This item-level-1 ordinary [[Draft:Potion|potion]] can be found in random loot, at [[Draft:Knight's Pawn Shop|the pawn shop]], or through [[Draft:Scroll of acquirement|acquirement]].<ref name="item-c-create_object">{{Source|item.c|7}} (<code>create_object</code>).</ref><ref name="site1-c-l_pawn_shop">{{Source|site1.c|1022}} (<code>l_pawn_shop</code>).</ref><ref name="effect1-c-acquire">{{Source|effect1.c|647}} (<code>acquire</code>).</ref><ref name="item-c-make_potion">{{Source|item.c|179}} (<code>make_potion</code>).</ref>


== Description ==
== Description ==
Line 11: Line 13:
A cursed potion draws those glyphs at random map coordinates instead of the objects' actual positions. It still uses the ground objects as its input, so an empty level need not produce a useful distinguishing display. Curse strength, positive blessing and enchantment do not add a more detailed scan. Noncursed use records the potion type; cursed use does not.
A cursed potion draws those glyphs at random map coordinates instead of the objects' actual positions. It still uses the ground objects as its input, so an empty level need not produce a useful distinguishing display. Curse strength, positive blessing and enchantment do not add a more detailed scan. Noncursed use records the potion type; cursed use does not.


The drawing follows the current screen's viewport, so a large map's offscreen areas are not automatically presented as a complete separate atlas.
The drawing follows the current screen's viewport, so a large map's offscreen areas are not automatically presented as a complete separate atlas.<ref name="itemf1-c-i_objdet">{{Source|itemf1.c|202}} (<code>i_objdet</code>).</ref><ref name="effect1-c-objdet">{{Source|effect1.c|476}} (<code>objdet</code>).</ref><ref name="scr-c-putspot">{{Source|scr.c|815}} (<code>putspot</code>).</ref>


== Strategy ==
== Strategy ==
Line 18: Line 20:
Do not spend a blessing on an already noncursed bottle expecting better detail. [[Draft:Potion of monster detection|Monster detection]] answers the separate question of where living creatures are; neither potion replaces full [[Draft:Scroll of identification|item identification]]. A possibly cursed scan should not be treated as trustworthy navigation.
Do not spend a blessing on an already noncursed bottle expecting better detail. [[Draft:Potion of monster detection|Monster detection]] answers the separate question of where living creatures are; neither potion replaces full [[Draft:Scroll of identification|item identification]]. A possibly cursed scan should not be treated as trustworthy navigation.


== References ==
<references />
[[Category:Potions]]
<!-- Omega 0.90.4; source 009707d17482b977061a6223b9de63eac4d368c3: iinit.h:142; itemf1.c:202-210; effect1.c:476-491; scr.c:815-830; item.c:179-185. Research: wiki/research/consumables-0.90.4.md. -->
<!-- Omega 0.90.4; source 009707d17482b977061a6223b9de63eac4d368c3: iinit.h:142; itemf1.c:202-210; effect1.c:476-491; scr.c:815-830; item.c:179-185. Research: wiki/research/consumables-0.90.4.md. -->
[[Category:Potions]]

Revision as of 06:59, 9 September 2026

Omega 0.90.4

A potion of object detection briefly displays the locations of objects lying on the current map. It helps locate loot, but does not identify the objects or show everything carried by creatures.[1]

Generation

This item-level-1 ordinary potion can be found in random loot, at the pawn shop, or through acquirement.[2][3][4][5]

Description

Noncursed drinking draws an object glyph for each map square with a ground-object list, using the first object in that list. The display is temporary and returns to the normal screen after acknowledgement. Multiple objects on one square are not separately enumerated. The display is not a durable map of item identities, values or blessings.

A cursed potion draws those glyphs at random map coordinates instead of the objects' actual positions. It still uses the ground objects as its input, so an empty level need not produce a useful distinguishing display. Curse strength, positive blessing and enchantment do not add a more detailed scan. Noncursed use records the potion type; cursed use does not.

The drawing follows the current screen's viewport, so a large map's offscreen areas are not automatically presented as a complete separate atlas.[6][7][8]

Strategy

Use it when deciding which part of a level merits exploration or when looking for a dropped object. Supplement the glimpse with clairvoyance to investigate the route. A glyph behind a wall is not an assurance that reaching it is safe or that the item is worth taking.

Do not spend a blessing on an already noncursed bottle expecting better detail. Monster detection answers the separate question of where living creatures are; neither potion replaces full item identification. A possibly cursed scan should not be treated as trustworthy navigation.

References