Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Accuracy Boost Rings #697

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions data/conf/creatures/mythical_being.xml
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,7 @@
<item value="greater potion" quantity="[2,4]" probability="30.0"/>
<item value="ice sword" quantity="[1,1]" probability="20.0"/>
<item value="apple" quantity="[10,30]" probability="80.0"/>
<item value="ring of enlightenment" quantity="1" probability="5.0"/>
</drops>
<equips/>
<ai>
Expand Down
20 changes: 20 additions & 0 deletions data/conf/items/rings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -250,4 +250,24 @@
</equipable>
</item>

<item name="ring of enlightenment">
<type class="ring" subclass="enlightenment" tileid="-1"/>
<description>You see a ring of enlightenment. You feel your confidence grow as you slip it on.</description>
<implementation class-name="games.stendhal.server.entity.item.Item"/>
<attributes>
<min_level value="0"/>
<accuracy_bonus value="50.0"/>
</attributes>
<weight value="0.1"/>
<value value="1"/>
<equipable>
<slot name="ground"/>
<slot name="content"/>
<slot name="bag"/>
<slot name="trade"/>
<slot name="finger"/>
<slot name="keyring"/>
</equipable>
</item>

</items>
Binary file added data/sprites/items/ring/enlightenment.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/sprites/items/ring/enlightenment.xcf.bz2
Binary file not shown.
1 change: 1 addition & 0 deletions doc/sources/graphics-item.txt
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,7 @@ aquamarine-ring.png Kimmo Rundelin (kiheru); CC BY-SA 3.0; Stendhal
clarity.* Jordan Irwin (AntumDeluge); OGA BY 3.0; https://opengameart.org/node/20712
emerald-ring.png Kimmo Rundelin (kiheru), Katie Russell (kymara); CC BY-SA 3.0; Stendhal
engagement_ring.png Katie Russell (kymara), Kimmo Rundelin (kiheru); CC BY-SA 3.0; Stendhal
enlightenment.* Jordan Irwin (AntumDeluge); OGA BY 3.0; https://opengameart.org/node/20712
gold-ring.png Kimmo Rundelin (kiheru); CC BY-SA 3.0; Stendhal
imperial_ring* Jordan Irwin (AntumDeluge); OGA BY 3.0; https://opengameart.org/node/88263
insulated_ring.png Jordan Irwin (AntumDeluge); OGA BY 3.0; https://opengameart.org/node/20712
Expand Down
Loading