Advertisement
sebbu

bullyMethodology

May 11th, 2021
1,008
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.80 KB | None | 0 0
  1. void bullyMethodology() {
  2.     do {
  3.         if (bullies.size() >= 1){
  4.             System.out.print(hurtfulWords);
  5.             System.out.print(internalizedRacism);
  6.             System.out.print(thoughtlessBile);
  7.             if (bully.aggression >= 2){
  8.                 hurt(bully, victim);
  9.             }
  10.         }else{
  11.             Bully b = new Bully(individual, victim);
  12.             bullies.add(b);
  13.         }
  14.         if (victim.isStillResisting == true){
  15.             bully.aggression++;
  16.             if (victim.fightingAbility >= bully.fightingAbility) {
  17.                 makeFalseAccusation(bully, victim);
  18.                 cowardlyAttack(bully, victim);
  19.                 spreadLies(bully, victim);
  20.             }
  21.         }
  22.     } while (victim.alive == true);
  23. }
  24. //Of course, a bully is not an individual but a group. And the group dynamics mean all bully the ones who stand out so that a group can be a group. There can be no unity without someone to band together to hurt.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement