1 /*
2 * Copyright (c) 2021 Kaiserpfalz EDV-Service, Roland T. Lichti.
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU 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 * This program 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 General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 */
17
18 package de.kaiserpfalzedv.rpg.torg.model.core;
19
20 import com.fasterxml.jackson.annotation.JsonInclude;
21
22 import lombok.Getter;
23 import lombok.RequiredArgsConstructor;
24
25 /**
26 * DN --
27 *
28 * @author klenkes74 {@literal <rlichti@kaiserpfalz-edv.de>}
29 * @since 0.3.0 2021-05-23
30 */
31 @RequiredArgsConstructor
32 @Getter
33 @JsonInclude(JsonInclude.Include.NON_ABSENT)
34 public enum DN {
35 VERY_EASY("Very Easy", 6, +4),
36 EASY("Easy", 8, +2),
37 STANDARD("Standard", 10, 0),
38 CHALLENGING("Challenging", 12, -2),
39 HARD("Hard", 14, -4),
40 VERY_HARD("Very Hard", 16, -6),
41 HEROIC("Heroic", 18, -8),
42 NEAR_IMPOSSIBLE("Near Impossible", 20, -10);
43
44 private final String name;
45 private final Integer dn;
46 private final Integer modifier;
47 }