View Javadoc
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.actors;
19  
20  import de.kaiserpfalzedv.commons.api.resources.HasName;
21  import de.kaiserpfalzedv.rpg.torg.model.core.Armor;
22  import de.kaiserpfalzedv.rpg.torg.model.core.Attack;
23  import de.kaiserpfalzedv.rpg.torg.model.core.Cosm;
24  import de.kaiserpfalzedv.rpg.torg.model.items.Item;
25  import de.kaiserpfalzedv.rpg.torg.model.perks.Perk;
26  import de.kaiserpfalzedv.rpg.torg.model.perks.magic.Spell;
27  import de.kaiserpfalzedv.rpg.torg.model.perks.psionic.PsiPower;
28  
29  import java.util.Set;
30  
31  /**
32   * Threat --
33   *
34   * @author klenkes74 {@literal <rlichti@kaiserpfalz-edv.de>}
35   * @since 1.3.0  2021-06-05
36   */
37  public interface Threat extends HasName {
38      String getDescription();
39  
40      Cosm getCosm();
41  
42      Set<AttributeValue> getAttributes();
43  
44      Other getOther();
45  
46      Possibility getPossibilities();
47  
48      Set<SkillValue> getSkills();
49  
50      Set<Attack> getAttacks();
51  
52      Set<Armor> getArmor();
53  
54      Set<Perk> getPerks();
55  
56      Set<Spell> getSpells();
57  
58      Set<PsiPower> getPsiPowers();
59  
60      Set<Item> getGear();
61  }