diff --git a/src/events/PE/UnderageConcubine.js b/src/events/PE/UnderageConcubine.js index 87b8cbe752c767f4857fa3248282b9dee247450e..3278410fa0af0be30a7c8f871a6ecf2202f61aef 100644 --- a/src/events/PE/UnderageConcubine.js +++ b/src/events/PE/UnderageConcubine.js @@ -12,12 +12,14 @@ App.Events.PEUnderageConcubine = class PEUnderageConcubine extends App.Events.Ba actorPrerequisites() { return [ [ // one actor, must be able-bodied, devoted, hearing/speaking, underaged concubine; eyes not necessary (s) => s.ID === V.ConcubineID, + (s) => s.fetish !== "mindbroken", (s) => s.actualAge < 18, // it's in the name of the event (s) => s.visualAge < 18, // so they must also look it (s) => s.actualAge > 6, // event text assumes fluent speech, inductive reasoning, etc (s) => s.devotion > 50, // you took her to an external event with you, so you must be able to count on her obedience canTalk, (s) => hasAnyArms(s), + canMove, canHear ] ]; }