From 212c104c2020faddcb2949bc8f11e15c8284fb52 Mon Sep 17 00:00:00 2001 From: David Gay Date: Wed, 16 Jun 2021 20:12:18 -0400 Subject: Change item infix break chance to 1/500 --- CHANGELOG.md | 6 +++--- app/models/item_infix.rb | 2 +- 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 -- cgit v1.2.3