Renamed Modifier effects to Modify.

This commit is contained in:
MobiusDevelopment
2022-07-16 22:58:15 +00:00
parent f237282148
commit 38bce3aefe
117 changed files with 2561 additions and 2561 deletions

View File

@@ -244,7 +244,7 @@ public class EffectMasterHandler
EffectHandler.getInstance().registerHandler("MpShield", MpShield::new);
EffectHandler.getInstance().registerHandler("MpVampiricAttack", MpVampiricAttack::new);
EffectHandler.getInstance().registerHandler("Mute", Mute::new);
EffectHandler.getInstance().registerHandler("NightStatModifier", NightStatModifier::new);
EffectHandler.getInstance().registerHandler("NightStatModify", NightStatModify::new);
EffectHandler.getInstance().registerHandler("NoblesseBless", NoblesseBless::new);
EffectHandler.getInstance().registerHandler("OpenChest", OpenChest::new);
EffectHandler.getInstance().registerHandler("OpenCommonRecipeBook", OpenCommonRecipeBook::new);

View File

@@ -39,7 +39,7 @@ import org.l2jmobius.gameserver.taskmanager.GameTimeTaskManager;
/**
* @author Mobius
*/
public class NightStatModifier extends AbstractEffect
public class NightStatModify extends AbstractEffect
{
private static final AtomicBoolean DAY_TIME = new AtomicBoolean(GameTimeTaskManager.getInstance().isNight());
private static final Set<Creature> NIGHT_STAT_CHARACTERS = ConcurrentHashMap.newKeySet();
@@ -49,7 +49,7 @@ public class NightStatModifier extends AbstractEffect
private final int _amount;
protected final StatModifierType _mode;
public NightStatModifier(StatSet params)
public NightStatModify(StatSet params)
{
_stat = params.getEnum("stat", Stat.class);
_amount = params.getInt("amount");

View File

@@ -6480,7 +6480,7 @@
<operateType>P</operateType>
<magicCriticalRate>5</magicCriticalRate>
<effects>
<effect name="NightStatModifier">
<effect name="NightStatModify">
<stat>ACCURACY_COMBAT</stat>
<amount>3</amount>
</effect>

View File

@@ -213,7 +213,7 @@ MpRegen: MP Regeneration stat.
MpShield: Transfers given percentage of damage as mana damage. Mana Shield.
MpVampiricAttack: Absorbs given percentage of mana during attack.
Mute: Prevents target from using magical skills. Silence.
NightStatModifier: Modify a specific stat at night time. (l2jmobius)
NightStatModify: Modify a specific stat at night time. (l2jmobius)
NoblesseBless: Does not remove buffs upon death except itself.
OpenChest: Opens a treasure chest.
OpenCommonRecipeBook: Shows the common recipe book window.