From 04cb350fc343d6eab5c64c727d7916b869e5e4e0 Mon Sep 17 00:00:00 2001 From: Alexander Yakovlev Date: Mon, 12 Aug 2019 17:57:35 +0700 Subject: [PATCH] separate library for english and russian --- examine.h => examine_en.h | 0 examine_ru.h | 15 +++++++++++++++ 2 files changed, 15 insertions(+) rename examine.h => examine_en.h (100%) create mode 100644 examine_ru.h diff --git a/examine.h b/examine_en.h similarity index 100% rename from examine.h rename to examine_en.h diff --git a/examine_ru.h b/examine_ru.h new file mode 100644 index 0000000..f2ddad6 --- /dev/null +++ b/examine_ru.h @@ -0,0 +1,15 @@ +Global the_word_was = ""; + +[ UnknownVerb word i; + objectloop (i in location) { + if ( + !word == (i.&name) --> 0 && + i has scenery + ) { + the_word_was = i; + return 'осм'; + } + rfalse; + } + rfalse; +];