OSDN Git Service

hengbandforosx/hengbandosx.git
4 years agoAdded comments on preprocessor conditional parts to match what's in the For2.2.2...
Eric Branlund [Thu, 20 Feb 2020 13:56:52 +0000 (05:56 -0800)]
Added comments on preprocessor conditional parts to match what's in the For2.2.2-Refactoring branch.

4 years agoIn init.c's dir_create() and create_needed_dirs(), expanded internal fixed-size buffe...
Eric Branlund [Thu, 20 Feb 2020 13:54:11 +0000 (05:54 -0800)]
In init.c's dir_create() and create_needed_dirs(), expanded internal fixed-size buffers to match what's used in init_file_paths().

4 years agoChanged create_needed_dirs() so that as called by main.c it acts like main.c did...
Eric Branlund [Thu, 20 Feb 2020 13:50:13 +0000 (05:50 -0800)]
Changed create_needed_dirs() so that as called by main.c it acts like main.c did before the changes I made for init_file_paths():  only attempts to create the user directory when PRIVATE_USER_PATH is set.

4 years agoIn create_needed_dirs(), don't make ANGBAND_DIR_SCRIPT since with PHO's patch it...
Eric Branlund [Thu, 20 Feb 2020 13:46:27 +0000 (05:46 -0800)]
In create_needed_dirs(), don't make ANGBAND_DIR_SCRIPT since with PHO's patch it isn't one of the directories that may be writable.

4 years agoCorrected error in merge: expanding game_datadir rather than the game_libpath from...
Eric Branlund [Thu, 20 Feb 2020 13:40:01 +0000 (05:40 -0800)]
Corrected error in merge:  expanding game_datadir rather than the game_libpath from the change.

4 years agoChanged declaration order and white space in spell_RF6_HASTE and spell_RF6_HEAL to...
Eric Branlund [Thu, 20 Feb 2020 08:03:04 +0000 (00:03 -0800)]
Changed declaration order and white space in spell_RF6_HASTE and spell_RF6_HEAL to match what's been done in the For2.2.2-Refactoring branch.

4 years agoRemoved AngbandContext's endGame since it is not called.
Eric Branlund [Thu, 20 Feb 2020 07:50:11 +0000 (23:50 -0800)]
Removed AngbandContext's endGame since it is not called.

4 years agoRemoved AngbandContext's validateMenuItem since it does not host setGraphicsMode...
Eric Branlund [Thu, 20 Feb 2020 07:47:35 +0000 (23:47 -0800)]
Removed AngbandContext's validateMenuItem since it does not host setGraphicsMode and the application delegate handles the validation.

4 years agoChanged to NSMenuItem's parentItem (added in 10.6) rather than the locally declared...
Eric Branlund [Thu, 20 Feb 2020 06:56:10 +0000 (22:56 -0800)]
Changed to NSMenuItem's parentItem (added in 10.6) rather than the locally declared superitem.

4 years agoRemoved terminalsMenu from the application delegate (not referenced by the code or...
Eric Branlund [Thu, 20 Feb 2020 06:48:52 +0000 (22:48 -0800)]
Removed terminalsMenu from the application delegate (not referenced by the code or by the Interface Builder file).  Removed the IBAction designation from setGraphicsMode and selectWindow (both are not hooked to controls via InterfaceBuilder file).  Removed the IBOutlet designation from AngbandView's angbandContext since it is not hooked to a user interface element by the Interface Builder file.

4 years agoUpdated openFiles for changes evidently made in 10.3: return value is void and succe...
Eric Branlund [Thu, 20 Feb 2020 03:58:12 +0000 (19:58 -0800)]
Updated openFiles for changes evidently made in 10.3:  return value is void and success or failure is reported through NSApplication's replyToOpenOrPrint.

4 years agoI dropped a trailing bracket in the merge from upstream. Fixed.
Eric Branlund [Thu, 20 Feb 2020 03:20:16 +0000 (19:20 -0800)]
I dropped a trailing bracket in the merge from upstream.  Fixed.

4 years agoChanged to have main-cocoa.m use the application delegate declaration from cocoa...
Eric Branlund [Thu, 20 Feb 2020 03:12:14 +0000 (19:12 -0800)]
Changed to have main-cocoa.m use the application delegate declaration from cocoa/AppDelegate.h rather than use its own declaration.  Since cocoa/AppDelegate.h is now included in compilation, moved it from EXTRA_DIST to hengband_SOURCES and EXTRA_hengband_sources.

4 years agoModified src/Makefile.am so that src/cocoa/AppDelegate.{h,m} and src/cocoa/Base.lproj...
Eric Branlund [Thu, 20 Feb 2020 03:01:49 +0000 (19:01 -0800)]
Modified src/Makefile.am so that src/cocoa/AppDelegate.{h,m} and src/cocoa/Base.lproj/MainMenu.xib are included in the archive generated with "make dist".

4 years agoAdded stub files, cocoa/AppDelegate.h and cocoa/AppDelegate.m, and an XML Interface...
Eric Branlund [Thu, 20 Feb 2020 02:23:48 +0000 (18:23 -0800)]
Added stub files, cocoa/AppDelegate.h and cocoa/AppDelegate.m, and an XML Interface BUilder file, cocoa/Base.lproj/MainMenu.xib, so that it's easier to regenerate MainMenu.nib if making substantial changes to the Cocoa menus.  Comments in cocoa/AppDelegate.m outline the procedure.  The former src/cocoa/en.lproj/MainMenu.nib (as a directory) has been replaced by src/cocoa/Base.lproj/MainMenu.nib.  The version in this commit was generated with Xcode 11.3 with a deployment target of 10.8.  There is no longer a separate nib, src/cocoa/ja.lproj/MainMenu.nib, for Japanese.  Instead have src/cocoa/ja.lproj/MainMenu.strings to specify the Japanese versions of the menu labels.  Since Base localization is supposed to only be available in 10.8 and later, set the deployment target flags in Makefile.am to be 10.8 rather than 10.7.

4 years agoMerge branch 'master' of git://git.osdn.net/gitroot/hengband/hengband . Used upstrea...
Eric Branlund [Mon, 17 Feb 2020 05:52:23 +0000 (21:52 -0800)]
Merge branch 'master' of git://git.osdn.net/gitroot/hengband/hengband .  Used upstream's of two arguments to init_file_paths() but kept the implementation similar to what was used in the OS X port (don't modify the incoming arguments so declare them as concptr).

4 years agoFixed regression: minimum window size not correctly set at startup on main window.
Eric Branlund [Mon, 17 Feb 2020 05:03:02 +0000 (21:03 -0800)]
Fixed regression:  minimum window size not correctly set at startup on main window.

4 years agoMerge pull request #40011 (phonohawk/hengband/with-varpath into master).
deskull [Sun, 16 Feb 2020 13:04:35 +0000 (22:04 +0900)]
Merge pull request #40011 (phonohawk/hengband/with-varpath into master).

4 years agoMerge branch 'master' of git://git.osdn.net/gitroot/hengband/hengband
Eric Branlund [Thu, 13 Feb 2020 01:40:01 +0000 (17:40 -0800)]
Merge branch 'master' of git://git.osdn.net/gitroot/hengband/hengband

4 years ago[Feature] Add ./configure option "--with-varpath=PATH"
PHO [Thu, 6 Feb 2020 13:05:32 +0000 (22:05 +0900)]
[Feature] Add ./configure option "--with-varpath=PATH"

On Unix-like platforms, it is often desirable to install files that
will be modified after installation under a separate directory tree
from that containing read-only data files. This is so that read-only
files can reside in a read-only file system, and also package managers
can update or remove read-only files without worrying about removing
user data.

The new option "--with-varpath=PATH", when specified, configures the
game so that certain directories, namely apex, bone, data, edit, user,
and save, will be created under the given path, as opposed to the path
specified with "--with-libpath=PATH". When the option is not given,
those directories will be created under the lib directory as before.

4 years agoMerge pull request #40005 (phonohawk/hengband/fix-build-unix into master).
deskull [Fri, 7 Feb 2020 15:30:56 +0000 (00:30 +0900)]
Merge pull request #40005 (phonohawk/hengband/fix-build-unix into master).

4 years agoFor OS X, suppress the warning messages about EUC-JP encoded strings (doing so for...
Eric Branlund [Thu, 6 Feb 2020 09:37:09 +0000 (01:37 -0800)]
For OS X, suppress the warning messages about EUC-JP encoded strings (doing so for both the English and Japanese versions; it would be better to just do so when compiling the Japanese version).

4 years ago[Fix] Fix a build failure that occurs when --disable-japanese is in effect
PHO [Thu, 6 Feb 2020 06:26:56 +0000 (15:26 +0900)]
[Fix] Fix a build failure that occurs when --disable-japanese is in effect

4 years ago[Fix] #39669 Fix build on non-Windows platforms
PHO [Thu, 6 Feb 2020 06:25:30 +0000 (15:25 +0900)]
[Fix] #39669 Fix build on non-Windows platforms

4 years agoCorrected typo in English ability description.
Eric Branlund [Thu, 6 Feb 2020 02:10:50 +0000 (18:10 -0800)]
Corrected typo in English ability description.

4 years agoChanged to keep the save menu entry and command menu entries disabled during player...
Eric Branlund [Wed, 29 Jan 2020 09:33:33 +0000 (01:33 -0800)]
Changed to keep the save menu entry and command menu entries disabled during player birth.

4 years agoModified so save menu item is disabled while on the splash screen.
Eric Branlund [Wed, 29 Jan 2020 09:21:23 +0000 (01:21 -0800)]
Modified so save menu item is disabled while on the splash screen.

4 years agoTo match English message for adding an essence to an object, swapped the format argum...
Eric Branlund [Tue, 28 Jan 2020 04:45:30 +0000 (20:45 -0800)]
To match English message for adding an essence to an object, swapped the format arguments.  Kept the arguments for the Japanese message the same.

4 years agoMerge branch 'master' of git://git.osdn.net/gitroot/hengband/hengband
Eric Branlund [Tue, 28 Jan 2020 04:30:58 +0000 (20:30 -0800)]
Merge branch 'master' of git://git.osdn.net/gitroot/hengband/hengband

4 years agoChanged so that font changes on the main window while playing do a better job of...
Eric Branlund [Mon, 27 Jan 2020 15:37:40 +0000 (07:37 -0800)]
Changed so that font changes on the main window while playing do a better job of keeping the player in the bounds of the window.

4 years ago[Fix] #37353 英語版のビルドエラー修正 / Fix build error in English.
deskull [Mon, 27 Jan 2020 15:19:01 +0000 (00:19 +0900)]
[Fix] #37353 英語版のビルドエラー修正 / Fix build error in English.

4 years agoRemoved extraneous space in English description for the swimsuit of Milim the Valkyrie.
Eric Branlund [Sun, 26 Jan 2020 22:29:36 +0000 (14:29 -0800)]
Removed extraneous space in English description for the swimsuit of Milim the Valkyrie.

4 years agoChanged when blending is used with tile sets: now use blending if the tile set has...
Eric Branlund [Sun, 26 Jan 2020 01:56:07 +0000 (17:56 -0800)]
Changed when blending is used with tile sets: now use blending if the tile set has an alpha channel. In practice, that means the original tiles will now be rendered with blending (previously they were not) and the Nomad tiles will be rendered without blending (but since they have no opacity information the only difference should be improved rendering speed).

4 years agoAdded an English description for the sexy swimsuit of Milim the Valkyrie. The descri...
Eric Branlund [Sun, 26 Jan 2020 03:14:07 +0000 (19:14 -0800)]
Added an English description for the sexy swimsuit of Milim the Valkyrie.  The description tries to follow Google Translate's result for the Japanese description.  It also draws from information from Wikipedia's entry for Queen's Blade Rebellion, https://en.wikipedia.org/wiki/Queen%27s_Blade_Rebellion .

4 years agoChanged where init_graphics_modes() is called to align with Angband 4.2.
Eric Branlund [Fri, 24 Jan 2020 18:18:22 +0000 (10:18 -0800)]
Changed where init_graphics_modes() is called to align with Angband 4.2.

4 years agoMade some whitespace changes to better match what's in Angband's main-cocoa.m.
Eric Branlund [Fri, 24 Jan 2020 18:09:10 +0000 (10:09 -0800)]
Made some whitespace changes to better match what's in Angband's main-cocoa.m.

4 years agoPort over correction for Angband issue 4114 ( https://github.com/angband/angband...
Eric Branlund [Fri, 24 Jan 2020 17:55:34 +0000 (09:55 -0800)]
Port over correction for Angband issue 4114 ( https://github.com/angband/angband/issues/4114 ):  exiting while in fullscreen mode and then restarting leaves terminal 0 acting as if it was the full screen size.

4 years agoAdded optimization for tile rendering: don't draw the foreground of a tile if it...
Eric Branlund [Fri, 24 Jan 2020 17:31:31 +0000 (09:31 -0800)]
Added optimization for tile rendering:  don't draw the foreground of a tile if it is the same as the background.

4 years agoCorrected tile rendering problem introduced by the change to record the drawing chang...
Eric Branlund [Fri, 24 Jan 2020 17:11:13 +0000 (09:11 -0800)]
Corrected tile rendering problem introduced by the change to record the drawing changes and flush them in response to TERM_XTRA_FRESH:  with tiles, objects and creatures always shown with black background.

4 years agoCorrected instance of subject/verb agreement in English description for Keiun-Kininken.
Eric Branlund [Thu, 23 Jan 2020 16:26:57 +0000 (08:26 -0800)]
Corrected instance of subject/verb agreement in English description for Keiun-Kininken.

4 years agoReplaced "spelling" with "spell casting" in English name for high mage innate ability.
Eric Branlund [Thu, 23 Jan 2020 02:51:06 +0000 (18:51 -0800)]
Replaced "spelling" with "spell casting" in English name for high mage innate ability.

4 years agoFixed instance of whitespace to match adjacent lines.
Eric Branlund [Wed, 22 Jan 2020 11:18:43 +0000 (03:18 -0800)]
Fixed instance of whitespace to match adjacent lines.

4 years agoMade whitespace changes to reduce the number of differences with Angband's main-cocoa.m.
Eric Branlund [Tue, 21 Jan 2020 01:04:47 +0000 (17:04 -0800)]
Made whitespace changes to reduce the number of differences with Angband's main-cocoa.m.

4 years agoRemoved commented out code that does not appear in Angband 4.2's main-cocoa.m.
Eric Branlund [Tue, 21 Jan 2020 00:42:58 +0000 (16:42 -0800)]
Removed commented out code that does not appear in Angband 4.2's main-cocoa.m.

4 years agoReordered keys in Angband-Cocoa.xml so there are fewer differences when compared...
Eric Branlund [Tue, 21 Jan 2020 00:25:46 +0000 (16:25 -0800)]
Reordered keys in Angband-Cocoa.xml so there are fewer differences when compared to the equivalent file in Angband.

4 years agoChanged "of The Bonze Octopus" to "of The Bronze Octopus" (Google Translate gives...
Eric Branlund [Mon, 20 Jan 2020 07:26:15 +0000 (23:26 -0800)]
Changed "of The Bonze Octopus" to "of The Bronze Octopus" (Google Translate gives tin in its result, but I'll stick with bronze) and added an English description which interpolates from Google Translate's result for the Japanese description (ignoring the quoted material) and the mention of the legend in kansai-odyssey.com/kishiwada-castle-danjiri-museum/ .

4 years agoAdded an English description for the metal shod boots 'Tetsu-geta of Flame'. The...
Eric Branlund [Mon, 20 Jan 2020 06:52:40 +0000 (22:52 -0800)]
Added an English description for the metal shod boots 'Tetsu-geta of Flame'.  The description largely follows Google Translate's result for the description.

4 years agoAdded an English description for the metal lamellar armour of the Padre. It tries...
Eric Branlund [Sun, 19 Jan 2020 20:42:39 +0000 (12:42 -0800)]
Added an English description for the metal lamellar armour of the Padre.  It tries to cover the same ground as Google Translate's result for the Japanese description.

4 years agoAdded an English description for the awl-pike 'Ama-no-NumaHoko'. It is a recapitulat...
Eric Branlund [Sun, 19 Jan 2020 19:25:25 +0000 (11:25 -0800)]
Added an English description for the awl-pike 'Ama-no-NumaHoko'.  It is a recapitulation of https://en.wikipedia.org/wiki/Amenonuhoko which seems to be the same story given in the Japanese description.

4 years agoAdded an English description for the blue dragon scale mail 'Elemental of Ching-Rong...
Eric Branlund [Sun, 19 Jan 2020 19:06:55 +0000 (11:06 -0800)]
Added an English description for the blue dragon scale mail 'Elemental of Ching-Rong'.  It's an attempt to capture what I think is the intent of the Japanese description (as filtered through Google Translate) and is informed by the content at https://en.wikipedia.org/wiki/Azure_Dragon , https://en.wikipedia.org/wiki/White_Tiger_(mythology) , https://en.wikipedia.org/wiki/Black_Tortoise , and https://en.wikipedia.org/wiki/Vermilion_Bird .

4 years agoAdded an English description for the rhino hide armour 'Dasai'. It adds some to...
Eric Branlund [Sun, 19 Jan 2020 18:17:25 +0000 (10:17 -0800)]
Added an English description for the rhino hide armour 'Dasai'.  It adds some to Google Translate's result for the Japanese description to hint at the penalty to charisma and the AGGRAVATE flag.

4 years agoAdded an English description for the small metal shield of Perseus. It is a slightly...
Eric Branlund [Sun, 19 Jan 2020 17:53:26 +0000 (09:53 -0800)]
Added an English description for the small metal shield of Perseus.  It is a slightly rearranged version of Google Translate's result for the Japanese description.

4 years agoAdded an English description for the testsubo of Shuten-douji. It is essentially...
Eric Branlund [Sun, 19 Jan 2020 17:25:44 +0000 (09:25 -0800)]
Added an English description for the testsubo of Shuten-douji.  It is essentially Google Translate's result for the Japanese description with some modifications based on the content from https://en.wikipedia.org/wiki/Shuten-dōji and https://en.wikipedia.org/wiki/Kanabō .

4 years agoAdded an English description for the falchion of Guan Yu. It is essentially the...
Eric Branlund [Sun, 19 Jan 2020 17:06:25 +0000 (09:06 -0800)]
Added an English description for the falchion of Guan Yu.  It is essentially the same as Google Translate's result for the Japanese description, but use the transliteration of the Chinese name for the general from the Three Kingdoms period in Chinese history, https://en.wikipedia.org/wiki/Guan_Yu .

4 years agoInserted missing period in English message. Brings the message into agreement with...
Eric Branlund [Sun, 19 Jan 2020 16:34:52 +0000 (08:34 -0800)]
Inserted missing period in English message.  Brings the message into agreement with the changes merged into the For2.2.2-Refactoring branch.

4 years agoAdded an English description, which is just Google Translate's result for the Japanes...
Eric Branlund [Sat, 18 Jan 2020 07:12:12 +0000 (23:12 -0800)]
Added an English description, which is just Google Translate's result for the Japanese description, for the Yumi of irresponsibility.

4 years agoAdded an English description for the 'Iron ball'. Based on https://nethackwiki.com...
Eric Branlund [Sat, 18 Jan 2020 06:26:06 +0000 (22:26 -0800)]
Added an English description for the 'Iron ball'.  Based on https://nethackwiki.com/wiki/Punishment , this appears to be a Nethack reference.  The English description is not particularly close to Google Translate's result for the Japanese description.

4 years agoAdded an English description for Matoi using Google Translate's result for the Jpanes...
Eric Branlund [Fri, 17 Jan 2020 19:25:20 +0000 (11:25 -0800)]
Added an English description for Matoi using Google Translate's result for the Jpanese description, https://en.wikipedia.org/wiki/Matoi , and nihonhikeshihozonkai.org/english/index.html as sources.

4 years agoAdded an English description for Hyousi-gi using Google Translate's result for the...
Eric Branlund [Fri, 17 Jan 2020 19:09:02 +0000 (11:09 -0800)]
Added an English description for Hyousi-gi using Google Translate's result for the Japanese description and the "Other uses" sectiob of https://en.wikipedia.org/wiki/Hyōshigi as sources.

4 years agoAdded an English description of the long sword 'Gurenki'. From http://www-personal...
Eric Branlund [Fri, 17 Jan 2020 08:54:06 +0000 (00:54 -0800)]
Added an English description of the long sword 'Gurenki'.  From www-personal.umich.edu/~weyrbrat/fanfic/anime/novels/tsurugi.html , I'm guessing it is a reference to the light novel, Hayou no Tsurugi, so the description uses the color mentioned in Google Translate's result for the Japanese description and an allusion to it's demon-killing prowess (mentioned in that website summarizing Hayou no Tsurugi and implied by the KILL_DEMON | ESP_DEMON flags).

4 years agoFor clarity, swapped word in the English description for Layzark, the Emperor.
Eric Branlund [Fri, 17 Jan 2020 05:17:35 +0000 (21:17 -0800)]
For clarity, swapped word in the English description for Layzark, the Emperor.

4 years agoChanged encoding for keycode and option modifier in macro triggers generated from...
Eric Branlund [Thu, 16 Jan 2020 21:57:52 +0000 (13:57 -0800)]
Changed encoding for keycode and option modifier in macro triggers generated from the Cocoa interface.  The changed keycode encoding covers the entire range of a unichar and does not have the possibility of being mistaken for a modifier key.  The changed encoding for the option modifier is to match what is used in main-mac.c.  Removed direct mapping of some keys (cursor keys, help function key, and delete function key) to the underlying command set and instead pass those through the macro trigger mechanism.  That allows the cursor keys to work in the editor for the autopick settings.  Added trigger names to match the macro triggers generated by the Cocoa interface in pref-mac.prf and modified the macro patterns there to use trigger names so most of the macros can be shared for the old Mac interface and the Cocoa interface.

4 years agoIn preparation for keycode encoding changes in main-cocoa.m use "coc" for ANGBAND_SYS...
Eric Branlund [Wed, 15 Jan 2020 18:24:15 +0000 (10:24 -0800)]
In preparation for keycode encoding changes in main-cocoa.m use "coc" for ANGBAND_SYS rather than "mac".  In the preference files for now, treat "coc" as a synonym for "mac".

4 years agoChanged to set ANGBAND_SYS before calling load_prefs() so that use the *-mac.prf...
Eric Branlund [Mon, 13 Jan 2020 04:38:24 +0000 (20:38 -0800)]
Changed to set ANGBAND_SYS before calling load_prefs() so that use the *-mac.prf files rather than the *-xxx.prf ones.

4 years agoCorrected awkwardly worded comment.
Eric Branlund [Fri, 10 Jan 2020 20:20:58 +0000 (12:20 -0800)]
Corrected awkwardly worded comment.

4 years agoChanged English earthquake messages to match what upstream had done in the For2.2...
Eric Branlund [Fri, 10 Jan 2020 18:55:08 +0000 (10:55 -0800)]
Changed English earthquake messages to match what upstream had done in the For2.2.2-Refactoring branch to fix side effects of a global search and replace.

4 years agoWent back to using "staffs" as the plural of staff rather than "stave" since saw...
Eric Branlund [Wed, 8 Jan 2020 05:24:22 +0000 (21:24 -0800)]
Went back to using "staffs" as the plural of staff rather than "stave" since saw some sources indicating that both are acceptable and some treating "staves" as archaic.  Using "staves" as the plural also would require some modification of object_desc() and the k_info.txt entries for "Quarterstaff", "Jo Staff" and "Bo Staff".

4 years agoAdded blank line to match how the changes were incorporated into the For2.2.2-Refacto...
Eric Branlund [Sun, 5 Jan 2020 20:16:03 +0000 (12:16 -0800)]
Added blank line to match how the changes were incorporated into the For2.2.2-Refactoring branch upstream.

4 years agoTo be more idiomatic, dropped "out" in the English summary for QUEST_TYPE_FIND_ARTIFA...
Eric Branlund [Sat, 4 Jan 2020 19:43:26 +0000 (11:43 -0800)]
To be more idiomatic, dropped "out" in the English summary for QUEST_TYPE_FIND_ARTIFACT quests.

4 years agoRedid the English descriptions for the charge and harainuke abilities since the previ...
Eric Branlund [Sat, 4 Jan 2020 19:40:29 +0000 (11:40 -0800)]
Redid the English descriptions for the charge and harainuke abilities since the previous change didn't accurately convey how the movement after the attack works.

4 years agoReplaced "current_world_ptr->game_turn" with "turn" in a comment where the latter...
Eric Branlund [Wed, 1 Jan 2020 21:39:54 +0000 (13:39 -0800)]
Replaced "current_world_ptr->game_turn" with "turn" in a comment where the latter was more appropriate.

4 years agoIn the introductory phrase for the English description of imps, made the noun plural...
Eric Branlund [Wed, 1 Jan 2020 21:37:33 +0000 (13:37 -0800)]
In the introductory phrase for the English description of imps, made the noun plural to match the noun in the main clause.

4 years agoCorrected subject/verb agreement in the English message about the Kendo books.
Eric Branlund [Wed, 1 Jan 2020 04:21:28 +0000 (20:21 -0800)]
Corrected subject/verb agreement in the English message about the Kendo books.

4 years agoAdded an English description for the Orb of Fate. The quoted text is from https... vmacos2.2.1-7b
Eric Branlund [Mon, 30 Dec 2019 21:10:52 +0000 (13:10 -0800)]
Added an English description for the Orb of Fate.  The quoted text is from https://nethackwiki.com/wiki/Valkyrie_quest where I uniformly used Tyr as the deity (since Google Translate's result for the Japanese description has "Tulle") and replaced "daughter" with "child" in the last sentence.

4 years agoChanged the English description of Vampire Killer to flow better and use the spelling...
Eric Branlund [Mon, 30 Dec 2019 19:55:21 +0000 (11:55 -0800)]
Changed the English description of Vampire Killer to flow better and use the spelling for the family name that's used in English Wikipedia entry for the Castlevania characters.

4 years agoAdded an English label for the Heavy Crossbow of 管子の. Reworded the English descripti...
Eric Branlund [Mon, 30 Dec 2019 19:36:24 +0000 (11:36 -0800)]
Added an English label for the Heavy Crossbow of 管子の.  Reworded the English description to make it clearer (drawing upon the English Wikipedia entry for Guan Zhong in the process).

4 years agoChanged the English description for 'Wiizapper' to be a bit more idiomatic.
Eric Branlund [Mon, 30 Dec 2019 19:17:27 +0000 (11:17 -0800)]
Changed the English description for 'Wiizapper' to be a bit more idiomatic.

4 years agoAdded an English description for the Mace 'Demonbane'; it's Google Translate's result...
Eric Branlund [Mon, 30 Dec 2019 19:09:48 +0000 (11:09 -0800)]
Added an English description for the Mace 'Demonbane'; it's Google Translate's result for the Japanese description.

4 years agoInserted an indefinite article in the English label for the Broken Dagger of Magician...
Eric Branlund [Mon, 30 Dec 2019 18:11:57 +0000 (10:11 -0800)]
Inserted an indefinite article in the English label for the Broken Dagger of Magician to be more idiomatic.  Changed the English description since the older version was awkward.

4 years agoChanged to use the English rendering of the Greek, rather than Roman, form of Asclepi...
Eric Branlund [Mon, 30 Dec 2019 17:44:24 +0000 (09:44 -0800)]
Changed to use the English rendering of the Greek, rather than Roman, form of Asclepius's name and slightly reworded the description.

4 years agoReworded the English description for the Bolt of Wilhelm Tell.
Eric Branlund [Mon, 30 Dec 2019 17:29:08 +0000 (09:29 -0800)]
Reworded the English description for the Bolt of Wilhelm Tell.

4 years agoTo hopefully be more idiomatic, reworded the English description for the Light Crossb...
Eric Branlund [Mon, 30 Dec 2019 17:26:36 +0000 (09:26 -0800)]
To hopefully be more idiomatic, reworded the English description for the Light Crossbow of Wilhelm Tell.

4 years agoChanged the English description for the Light Crossbow of 'Hellfire' to add an adject...
Eric Branlund [Mon, 30 Dec 2019 17:17:02 +0000 (09:17 -0800)]
Changed the English description for the Light Crossbow of 'Hellfire' to add an adjective from Google Translate's result, change the verb from "gives" to "can cause" since the branding is an activation and not a permanent effect, and describe the branding effect in a different way.

4 years agoChanged the English description for the short bow of Robin Hood to be more idiomatic...
Eric Branlund [Mon, 30 Dec 2019 16:46:33 +0000 (08:46 -0800)]
Changed the English description for the short bow of Robin Hood to be more idiomatic and more closely follow Google Translate's result for the Japanese descripotion.

4 years agoAdded an English description for the Collar Harness of Hell. It tries to cover the...
Eric Branlund [Mon, 30 Dec 2019 16:43:03 +0000 (08:43 -0800)]
Added an English description for the Collar Harness of Hell.  It tries to cover the same ground as Google Translate's result for the Japanese description.

4 years agoTo be more idiomatic, dropped "the" from the English label for the "Collar Harness...
Eric Branlund [Mon, 30 Dec 2019 16:31:28 +0000 (08:31 -0800)]
To be more idiomatic, dropped "the" from the English label for the "Collar Harness of the Hell".

4 years agoAdded an English description for the Amulet of the Pitch Dark Night. It is essential...
Eric Branlund [Mon, 30 Dec 2019 16:19:05 +0000 (08:19 -0800)]
Added an English description for the Amulet of the Pitch Dark Night.  It is essentially Google Translate's result for the Japanese description.

4 years agoAdded an English description for fur cloak of Mook, drawing on Google Translate's...
Eric Branlund [Mon, 30 Dec 2019 06:26:19 +0000 (22:26 -0800)]
Added an English description for fur cloak of Mook, drawing on Google Translate's result for the Japanese description and the English Wikipedia entry for Gachapin.

4 years agoAdded an English description for the Sumo wrestler's loincloth.
Eric Branlund [Mon, 30 Dec 2019 06:20:20 +0000 (22:20 -0800)]
Added an English description for the Sumo wrestler's loincloth.

4 years agoFrom Google Translate's result for the Japanese description, it sounds like this...
Eric Branlund [Mon, 30 Dec 2019 06:10:01 +0000 (22:10 -0800)]
From Google Translate's result for the Japanese description, it sounds like this the rusty chainmail of the High Priest of Morlok is a NetHack reference.  Based on that, changed "Morlok" to "Moloch" in the label and added an English description that tries to match the intent of Google Translate's result but doesn't match the words.

4 years agoCorrected typo in label for artifact rusty chain mail.
Eric Branlund [Mon, 30 Dec 2019 05:52:17 +0000 (21:52 -0800)]
Corrected typo in label for artifact rusty chain mail.

4 years agoCorrected typo in the English description of Narsil.
Eric Branlund [Mon, 30 Dec 2019 04:53:54 +0000 (20:53 -0800)]
Corrected typo in the English description of Narsil.

4 years agoAdded an English description for the club of Samson.
Eric Branlund [Mon, 30 Dec 2019 04:45:03 +0000 (20:45 -0800)]
Added an English description for the club of Samson.

4 years agoEdited the description of the short sword of Merlin to hopefully be more idiomatic...
Eric Branlund [Mon, 30 Dec 2019 03:04:37 +0000 (19:04 -0800)]
Edited the description of the short sword of Merlin to hopefully be more idiomatic and include his relationship to Corwin.

4 years agoEdited the English description of Frakir to correct the spelling of "Merlin", give...
Eric Branlund [Mon, 30 Dec 2019 02:52:30 +0000 (18:52 -0800)]
Edited the English description of Frakir to correct the spelling of "Merlin", give his relationship to Corwin, and to hopefully be more idiomatic.

4 years agoAdded an English description for the whip of Bolshoi. It tries to emulate the conten...
Eric Branlund [Mon, 30 Dec 2019 02:43:35 +0000 (18:43 -0800)]
Added an English description for the whip of Bolshoi.  It tries to emulate the content, though not the exact wording, of Google Translate's result for the Japanese description.

4 years agoAdded an English description for Excalibur Jr. It tries to cover the same ground...
Eric Branlund [Sun, 29 Dec 2019 23:10:43 +0000 (15:10 -0800)]
Added an English description for Excalibur Jr.  It tries to cover the same ground as Google Translate's result for the Japanese description.

4 years agoAdded an English description for Exalipur: it's essentially Google Translate's resul...
Eric Branlund [Sun, 29 Dec 2019 23:05:23 +0000 (15:05 -0800)]
Added an English description for Exalipur:  it's essentially Google Translate's result for the Japanese description.

4 years agoAdded an English description for GaeBolg. That largely sticks to Google Translate...
Eric Branlund [Sun, 29 Dec 2019 21:29:55 +0000 (13:29 -0800)]
Added an English description for GaeBolg.  That largely sticks to Google Translate's result for the Japanese description but also draws from English Wikipedia entry for Gae Bulg.

4 years agoAdded an English description for Tonbo giri. It tries to cover the same ground as...
Eric Branlund [Sun, 29 Dec 2019 21:05:49 +0000 (13:05 -0800)]
Added an English description for Tonbo giri.  It tries to cover the same ground as Google Translate's result for the Japanese description, but also draws from the English Wikipedia entry for Tonbokiri.