DRG-Femboy-Voice/Source/FSD/Private/DifficultyMutator.cpp
2025-04-15 12:39:31 -07:00

15 lines
537 B
C++
Executable file

#include "DifficultyMutator.h"
UDifficultyMutator::UDifficultyMutator() {
this->ExtraLargeEnemyDamageResistanceMultiplier = 1.00f;
this->EnemyDamageResistanceMultiplier = 1.00f;
this->SmallEnemyDamageResistanceMultiplier = 1.00f;
this->EnemyDamageModifierMultiplier = 1.00f;
this->EnemyCountModifierMultiplier = 1.00f;
this->WeakpointDamageMultiplier = 1.00f;
this->HazardBonus = 0.00f;
this->ProjectileSpeedModifier = 1.00f;
this->AttackCooldownModifier = 1.00f;
this->SpeedModifier = 1.00f;
}