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
8 changed files
with
99 additions
and
23 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.idea | ||
target |
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,2 +1,2 @@ | ||
# Bitches | ||
Someone in the Feather Client Discord told me to go code myself some bitches, so I did. | ||
Someone in the Feather Client Discord told me to go code myself some bitches, so I did. |
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
24 changes: 24 additions & 0 deletions
24
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
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 | ||
public class AnnoyingBitch extends Bitch { | ||
private int annoyingLevel; | ||
|
||
private boolean pregnant; | ||
private boolean 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)]); | ||
} | ||
} |
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,15 +1,17 @@ | ||
package gq.noxiuam.bitches.object; | ||
|
||
import gq.noxiuam.bitches.object.data.Races; | ||
import gq.noxiuam.bitches.object.data.Gender; | ||
import gq.noxiuam.bitches.object.data.Race; | ||
import lombok.*; | ||
|
||
// Generic bitch | ||
@Getter @AllArgsConstructor | ||
@Getter @Setter | ||
@AllArgsConstructor @NoArgsConstructor | ||
public class Bitch { | ||
private String name; | ||
private String pronouns; | ||
|
||
private int age; | ||
|
||
private Races race; | ||
private Race race; | ||
private Gender gender; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
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 | ||
public class EmoBitch extends Bitch { | ||
private 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)]); | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package gq.noxiuam.bitches.object.data; | ||
|
||
public enum Gender { | ||
BOY, | ||
GIRL, | ||
OTHER | ||
} |
20 changes: 10 additions & 10 deletions
20
...gq/noxiuam/bitches/object/data/Races.java → .../gq/noxiuam/bitches/object/data/Race.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,10 +1,10 @@ | ||
package gq.noxiuam.bitches.object.data; | ||
|
||
// Define some races off the top of my head | ||
public enum Races { | ||
CAUCASIAN, | ||
AFRICAN, | ||
ASIAN, | ||
HISPANIC, | ||
INDIAN | ||
} | ||
package gq.noxiuam.bitches.object.data; | ||
|
||
// Define some races off the top of my head | ||
public enum Race { | ||
CAUCASIAN, | ||
AFRICAN, | ||
ASIAN, | ||
HISPANIC, | ||
INDIAN | ||
} |