Passed
Push — master ( fe13ae...db9a29 )
by Vincent
07:36 queued 12s
created

remove(Fight)   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
dl 0
loc 2
ccs 1
cts 1
cp 1
crap 1
rs 10
eloc 2
1
/*
2
 * This file is part of Araknemu.
3
 *
4
 * Araknemu is free software: you can redistribute it and/or modify
5
 * it under the terms of the GNU Lesser General Public License as published by
6
 * the Free Software Foundation, either version 3 of the License, or
7
 * (at your option) any later version.
8
 *
9
 * Araknemu is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 * GNU Lesser General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU Lesser General Public License
15
 * along with Araknemu.  If not, see <https://www.gnu.org/licenses/>.
16
 *
17
 * Copyright (c) 2017-2022 Vincent Quatrevieux
18
 */
19
20
package fr.quatrevieux.araknemu.game.fight.castable.effect.handler.characteristic;
21
22
import fr.quatrevieux.araknemu.data.constant.Characteristic;
23
import fr.quatrevieux.araknemu.game.fight.Fight;
24
import fr.quatrevieux.araknemu.game.fight.castable.effect.buff.Buff;
25
import fr.quatrevieux.araknemu.game.fight.fighter.PassiveFighter;
26
27
/**
28
 * Hook for handle vitality alteration
29
 * Synchronize fighter life using {@link fr.quatrevieux.araknemu.game.fight.fighter.FighterLife#alterMax(PassiveFighter, int)}
30
 * in addition to characteristic change performed by the base {@link AlterCharacteristicHook}
31
 *
32
 * @see AddVitalityHandler
33
 * @see RemoveVitalityHandler
34
 */
35
public final class AlterVitalityHook extends AlterCharacteristicHook {
36
    /**
37
     * @param fight Active fight
38
     * @param multiplier 1 for add vitality, -1 for remove
39
     */
40
    private AlterVitalityHook(Fight fight, int multiplier) {
41 1
        super(fight, Characteristic.VITALITY, multiplier, false);
42 1
    }
43
44
    @Override
45
    protected void apply(Buff buff, PassiveFighter target, int value) {
46 1
        super.apply(buff, target, value);
47 1
        target.life().alterMax(buff.caster(), value);
48 1
    }
49
50
    /**
51
     * Create the buff hook for add vitality to the fighter
52
     */
53
    public static AlterVitalityHook add(Fight fight) {
54 1
        return new AlterVitalityHook(fight, 1);
55
    }
56
57
    /**
58
     * Create the buff hook for remove vitality to the fighter
59
     */
60
    public static AlterVitalityHook remove(Fight fight) {
61 1
        return new AlterVitalityHook(fight, -1);
62
    }
63
}
64