From 07e3798a0da3afb163bb418264ade98659a0fece Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Sun, 4 Apr 2021 21:10:23 -0700 Subject: [PATCH] Revise examples and clarify comments --- devNotes/jsEventCreationGuide.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/devNotes/jsEventCreationGuide.md b/devNotes/jsEventCreationGuide.md index 65709fcdeff..1f5b9da3a6a 100644 --- a/devNotes/jsEventCreationGuide.md +++ b/devNotes/jsEventCreationGuide.md @@ -28,14 +28,22 @@ App.Events.MyEvent = class MyEvent extends App.Events.BaseEvent { // Dual slave return [ - [ + [ // here's the first actor, just like above + s => canWalk(s), + s => s.fetish !== "mindbroken", + s => s.devotion >= 50, + s => s.trust <= 20 + ], + [ // and in this case the second actor must be the first actor's mother s => s.ID === getSlave(this.actors[0]).mother ] ]; - // The second actor to be the first actor's mother. - - // empty example + + // Wants one actor, but "any slave will do" return [[]]; + + // Empty (no actors at all) + return []; } execute(node) { -- GitLab