OrianaVenture / Randy_Vapok_ValheimMods

Fork of Randy's Valheim mods from Vapok's Fork
2 stars 3 forks source link

Magic Effects Improvements #1

Open OrianaVenture opened 5 months ago

OrianaVenture commented 5 months ago

Current known bugs and improvements for the magic effects system:

jneb802 commented 5 months ago

Bugs

Suggested improvements

OrianaVenture commented 5 months ago

There was an attack speed issue present pre-0.9.38, there was a small patch to that system that should have helped a bit. It's likely you are seeing a side effect of the vanilla bug where attack speeds can speed up and skip animations. I'm not sure how to fix that, nor what the cause would be if it isn't in the core game issue I'm thinking of.

OrianaVenture commented 5 months ago

More changes:

Jester2020 commented 5 months ago

I'm not a huge fan of Tripple Shot. It seems like sometimes it doesn't work, or simply hard to tell when it does, conflicts with other mods/items at times that also have projectile increasing features (which i've either removed or gotten other devs to compensate for). As an alternative something like "Power Shot" with a damage multiplier to be determined by your balancing decisions and potentially a bigger knockback increase and a cool magicial effect on the arrows and/or bow when it fires.

jneb802 commented 5 months ago

I'm in the process of making my own balance patch and noticing some things. Most damage effects follow this tiering:

      "ValuesPerRarity" : {
        "Magic" : { "MinValue" : 10, "MaxValue" : 20, "Increment" : 1 },
        "Rare" : { "MinValue" : 10, "MaxValue" : 20, "Increment" : 1 },
        "Epic" : { "MinValue" : 10, "MaxValue" : 20, "Increment" : 1 },
        "Legendary" : { "MinValue" : 15, "MaxValue" : 25, "Increment" : 1 }
      },

However, this means the only benefit to rolling higher level gear is to get more affixes on the item. I think the effects should be different for each tier like this:

      "Value": {
        "Magic" : { "MinValue" : 5, "MaxValue" : 10, "Increment" : 1 },
        "Rare" : { "MinValue" : 10, "MaxValue" : 15, "Increment" : 1 },
        "Epic" : { "MinValue" : 15, "MaxValue" : 25, "Increment" : 1 },
        "Legendary" : { "MinValue" : 25, "MaxValue" : 35, "Increment" : 1 }
       }
OrianaVenture commented 4 months ago

Many of these issues have been fixed in #5 but some still remain.

OrianaVenture commented 4 months ago

Need to add Unarmed Skill magic effect to applicable items with that skill.

OrianaVenture commented 4 months ago

Investigate glowing effect and see if it can be applied to all object types. Reported to not work with LoxCape and some weapons.

OrianaVenture commented 3 months ago

Multishot code should remove item type and skill checks and should be controlled by mod configurations. (done)

OrianaVenture commented 3 weeks ago

Look into attack speed animation bug on multiple logout/login in one game session.