From e538ad6553d5ed0ca46e82ab190ab331e258a034 Mon Sep 17 00:00:00 2001 From: Arkerthan <arkerthan@mailbox.org> Date: Fri, 24 Jun 2022 22:02:14 +0200 Subject: [PATCH] Add teeth as string getter to RA --- js/rulesAssistant/conditionEvaluation.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/js/rulesAssistant/conditionEvaluation.js b/js/rulesAssistant/conditionEvaluation.js index e3c50573c75..4f269468d9e 100644 --- a/js/rulesAssistant/conditionEvaluation.js +++ b/js/rulesAssistant/conditionEvaluation.js @@ -671,6 +671,11 @@ App.RA.Activation.populateGetters = function() { "'pregnancy', 'none' (AKA vanilla)", val: c => c.slave.fetish }); + gm.addString("teeth", { + name: "Teeth", + description: "One of 'normal', 'crooked', 'gapped', 'straightening braces', 'cosmetic braces', 'removable', 'pointy', 'fangs', 'fang', 'baby', 'mixed'", + val: c => c.slave.teeth + }); gm.addString("title", { name: "Title", description: "Slave title (class) without adjectives (slavegirl, MILF, bimbo, shemale, herm, etc.). ", -- GitLab