Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
ThresholdMGD committed Dec 11, 2016
1 parent afbe454 commit dfd7d34
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions NightgamesMod/nightgames/skills/BreastSmother.java
Expand Up @@ -129,12 +129,12 @@ public String deal(Combat c, int damage, Result modifier, Character target) {
b.append("They can't help but groan in pleasure from having their face stuck between your perfect tits");

if (getSelf().has(Trait.beguilingbreasts)) {
b.append(", and you can't help but smile as they snuggle deeper into your cleavage.");
} else {
b.append(".");
}
b.append(", and you can't help but smile as they snuggle deeper into your cleavage");
}
b.append(".");

} else{
b.append(target.name() + " muffles something in confusion into your breasts before they begin to panic as they realize they cannot breathe!");
b.append(" " + target.name() + " muffles something in confusion into your breasts before they begin to panic as they realize they cannot breathe!");
}
return b.toString();
}
Expand All @@ -156,12 +156,12 @@ public String receive(Combat c, int damage, Result modifier, Character target) {
b.append(" perfect tits as they take your breath away");

if (getSelf().has(Trait.beguilingbreasts)) {
b.append(", and due to their beguiling nature you can't help but want to stay there as long as possible.");
} else {
b.append(".");
b.append(", and due to their beguiling nature you can't help but want to stay there as long as possible");
}
b.append(".");

} else{
b.append("You let out a few panicked sounds muffled by the breasts now covering your face as you realize you cannot breathe!");
b.append(" You let out a few panicked sounds muffled by the breasts now covering your face as you realize you cannot breathe!");
}

return b.toString();
Expand Down
4 changes: 2 additions & 2 deletions NightgamesMod/nightgames/skills/PinningPaizuri.java
Expand Up @@ -85,13 +85,13 @@ public String deal(Combat c, int damage, Result modifier, Character target) {
@Override
public String receive(Combat c, int damage, Result modifier, Character target) {
return Global.format(
"{self:SUBJECT-ACTION:bows} {other:name-do} over, and {self:action:wraps|settles} {self:possessive} breasts around {other:possessive} cock.",
"{self:SUBJECT-ACTION:bow:bows} {other:name-do} over, and {self:action:wrap|settles} {self:possessive} breasts around {other:possessive} cock.",

This comment has been minimized.

Copy link
@Pimvgd

Pimvgd Dec 11, 2016

this bow:bows, shouldn't it be bow|bows?

getSelf(), target);
}

@Override
public String describe(Combat c) {
return "Holds your opponent down and use your tits";
return "Hold your opponent down and use your tits";
}

@Override
Expand Down
4 changes: 2 additions & 2 deletions NightgamesMod/nightgames/stance/BreastSmothering.java
Expand Up @@ -31,8 +31,8 @@ public String image() {

@Override
public String describe(Combat c) {
return Global.format("{self:name} keeps {other:name-possesive} face between their tits, with {self:possessive} large breasts fully encompassing {other:possessive} view. {other:SUBJECT} cannot even breathe except for the short pauses when {self:subject-action:allow|allows} {other:direct-object} to by loosens {self:possessive} grip.", top, bottom);
}
return Global.format("{self:name} keeps {other:name-possessive} face between their tits, with {self:possessive} large breasts fully encompassing {other:possessive} view. {other:SUBJECT} cannot even breathe except for the short pauses when {self:subject-action:allow|allows} {other:direct-object} to by loosens {self:possessive} grip.", top, bottom);
}

@Override
public int distance() {
Expand Down

0 comments on commit dfd7d34

Please sign in to comment.