[General] Combat Wierdness

Status
Not open for further replies.

Theron

Well-Known Member
Nov 8, 2018
3,465
1,349
44
I'm not sure any of these are bugs, but I thought I'd bring them up for review:

Cunt-Snake's Bite directly changes Lust, rather than doing Drug damage. This means there is no way to resist it. Willpower & Resistances don't apply.

Female Zil's Lust attacks, likewise.

Vanae's Stun & Trip attacks do not take Steele's stats into account.

Captain Khorgan's Mech has a Crate throw attack that does Burning damage. Should probably be Kinetic.

Milodan Fertility Priestess' psionic powers are vs Willpower Quotient, meaning Steele only ever has a 50% chance to succeed at best, regardless of level.
 

Theron

Well-Known Member
Nov 8, 2018
3,465
1,349
44
0.9.104-PUBLIC#5114

Milk Thief Armor (Shield) modifies Burning Resist twice:
this.inventory.shield.resistances.burning.damageValue = -50.0;
this.inventory.shield.resistances.burning.damageValue = 20.0;

Corona Flamer modifies Resistances twice. Armor and HP resistances stack, but it seems unnecessary.
armor.resistances.kinetic.resistanceValue = 15;
armor.resistances.burning.resistanceValue = 35;
this.baseHPResistances.kinetic.resistanceValue = 20;
this.baseHPResistances.burning.resistanceValue = 30;
 
Last edited:

Jacques00

Administrator
Moderator
Aug 26, 2015
5,039
1,213
Hopefully fixed for the next release--at least mostly.

Stat checks for trips and stuns seem inconsistent, so I implemented what I could, but I didn't follow any particular pattern. I left the Corona Flamer alone since it doesn't seem broken and I wasn't sure if something can come from that in the future.
 
  • Like
Reactions: Theron

Theron

Well-Known Member
Nov 8, 2018
3,465
1,349
44
Deadly Shock Description said:
Boosts the amount of electrical current used for Paralyzing Shock, allowing it to do a moderate amount of electrical damage on top of the stun effect.
Code:
if (attacker.hasPerk("Deadly Shock"))
        {
            const targetDamage = Math.round(10 + attacker.level * 2 + attacker.bimboIntelligence() / 1.25);
            applyDamage({
                baseDamage: damageRand(new TypeCollection({ kinetic: targetDamage }), 15),
                attacker: attacker,
                target: target,
                outputMinimal: true
            })
Deadly Shock damage is Kinetic, not Electric?
 

Theron

Well-Known Member
Nov 8, 2018
3,465
1,349
44
Physique is the Accuracy stat for Ranged)? Wasn't in Flash...

Comment is the same for both combatMiss and rangedCombatMiss, but in Flash the actual calculation was changed to Aim.
I suspect a copy-paste error when implementing Third Eye Aim.
 
Last edited:
Status
Not open for further replies.