-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRole.java
33 lines (31 loc) · 878 Bytes
/
Role.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
* Import stuff
*/
package Javawolf;
public class Role {
// Name of this role
public String szName = null;
// What this role is seen as
public String szSeenAs = null;
// Show the role on death?
public boolean shownOnDeath = true;
// Show the role on being seen?
public boolean shownOnSeen = true;
// Show the role on being id'ed?
public boolean shownOnId = true;
// Kills harlot on visiting?
public boolean killsOnVisit = false;
// Are we evil?
public boolean evil = false;
public Role(String szName, String szSeenAs, boolean shownOnDeath, boolean shownOnSeen, boolean shownOnId,
boolean killsOnVisit, boolean evil) {
// Assign variables
this.szName = szName;
this.szSeenAs = szSeenAs;
this.shownOnDeath = shownOnDeath;
this.shownOnSeen = shownOnSeen;
this.shownOnId = shownOnId;
this.killsOnVisit = killsOnVisit;
this.evil = evil;
}
}