summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-06-16 20:12:18 -0400
committerDavid Gay <david@davidgay.org>2021-06-16 20:19:16 -0400
commit212c104c2020faddcb2949bc8f11e15c8284fb52 (patch)
tree4438de9d37aa69ebf3ed3028db10a3a8351381a3
parentcece9dd05cb339dca40470cf1f1729a8a8a355fd (diff)
Change item infix break chance to 1/500
-rw-r--r--CHANGELOG.md6
-rw-r--r--app/models/item_infix.rb2
2 files changed, 4 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fa5e676..203a738 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -16,7 +16,7 @@ All notable changes to this project will be documented in this file.
thereafter, another infix slot becomes available.
- Omens can be removed and re-infixed at will.
- All omens infixed in a skill have a chance to fade away and be permanently lost when performing that skill
- (like equipment breakage). The chance of an infixed omen fading away is 1/1000. You do not need to actively be
+ (like equipment breakage). The chance of an infixed omen fading away is 1/500. You do not need to actively be
getting a bonus from an infixed omen for it to have a chance to fade away. When performing a skill, all omens
infixed in that skill have the same chance to fade away.
- Duplicate omens can be infixed, and their effects will stack if possible.
@@ -43,11 +43,11 @@ All notable changes to this project will be documented in this file.
- Level requirements changes
- Arcanite longsword 15 -> 17 (setting it to 15 was a programming error)
- Havencast
- - New cantrips: Light, Dazzle, Decipher Magicscript, Enchant Apprentice Wand
+ - New cantrips: Light, Dazzle, Decipher Simple Magicscript, Enchant Apprentice Wand
- New spells: Stinging Rays, Flame Whirl
### Items
-- New items: apprentice wand, faint mana, minor mana
+- New items: apprentice wand, faint mana, minor mana, simple spellpage
- Iron lockpicks now increase synthsever speed by 10 seconds
- Axes, pickaxes, and spades skill speed increase numbers all adjusted to compensate for base timer reductions
diff --git a/app/models/item_infix.rb b/app/models/item_infix.rb
index 47b6aa4..b59ccdb 100644
--- a/app/models/item_infix.rb
+++ b/app/models/item_infix.rb
@@ -10,7 +10,7 @@ class ItemInfix < ApplicationRecord
end
def break_check
- rand > 0.999 ? destroy : false
+ rand > 0.998 ? destroy : false
end
private