forked from itsfsnow/Bitches
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
24 additions
and
26 deletions.
There are no files selected for viewing
22 changes: 8 additions & 14 deletions
22
src/main/java/gq/noxiuam/bitches/object/AnnoyingBitch.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,18 @@ | ||
package gq.noxiuam.bitches.object; | ||
|
||
import com.github.javafaker.Faker; | ||
import gq.noxiuam.bitches.object.data.Gender; | ||
import gq.noxiuam.bitches.object.data.Race; | ||
import lombok.*; | ||
|
||
import java.util.Random; | ||
|
||
// This is a prime example of what Mainzz (former Onix Client admin) is | ||
@Getter @AllArgsConstructor | ||
@Getter | ||
public class AnnoyingBitch extends Bitch { | ||
private int annoyingLevel; | ||
private final int annoyingLevel; | ||
|
||
private boolean pregnant; | ||
private boolean fatherless; | ||
private final boolean pregnant, fatherless; | ||
|
||
public AnnoyingBitch() { | ||
this.setName(new Faker().name().firstName()); | ||
this.setAge(new Random().nextInt(30) + 18); | ||
this.setRace(Race.values()[new Random().nextInt(Race.values().length)]); | ||
this.setGender(Gender.values()[new Random().nextInt(Race.values().length)]); | ||
public AnnoyingBitch(int annoyingLevel, boolean pregnant, boolean fatherless) { | ||
this.annoyingLevel = annoyingLevel; | ||
this.pregnant = pregnant; | ||
this.fatherless = fatherless; | ||
this.createNewBitch(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,15 @@ | ||
package gq.noxiuam.bitches.object; | ||
|
||
import com.github.javafaker.Faker; | ||
import gq.noxiuam.bitches.object.data.Gender; | ||
import gq.noxiuam.bitches.object.data.Race; | ||
import lombok.*; | ||
|
||
import java.util.Random; | ||
|
||
// Basically what 90% of Lunar Client's discord is | ||
@Getter @AllArgsConstructor | ||
@Getter | ||
public class EmoBitch extends Bitch { | ||
private boolean hasBarcodeWrists, wearsBlackClothes; | ||
private final boolean hasBarcodeWrists, wearsBlackClothes; | ||
|
||
public EmoBitch() { | ||
this.setName(new Faker().name().firstName()); | ||
this.setAge(new Random().nextInt(30) + 18); | ||
this.setRace(Race.values()[new Random().nextInt(Race.values().length)]); | ||
this.setGender(Gender.values()[new Random().nextInt(Race.values().length)]); | ||
public EmoBitch(boolean hasBarcodeWrists, boolean wearsBlackClothes) { | ||
this.hasBarcodeWrists = hasBarcodeWrists; | ||
this.wearsBlackClothes = wearsBlackClothes; | ||
this.createNewBitch(); | ||
} | ||
} |